oktadev/okta-node-express-typescript-vue-example
Example Node.js API using TypeScript, Express, and Vue
Example Node.js API using Express, TypeScript, Vue, and PostgreSQL
This example application shows how to create a Node.js Express web app using TypeScript. Please read Use TypeScript to Build a Node API with Express to see how this app was created.
Requirements
- Install Node.js version 8+
- Install Docker (or some other instance of PostgreSQL)
Development setup
- Clone or download this repository
- Install modules using
npm install - Copy
.env.sampleto.env - Set up PostgreSQL with Docker. With docker installed, use the following two commands to create an instance of PostgreSQL for the application. Feel free to change the name and password for the database.
docker pull postgres:latest
docker run -d --name guitar-db -p 5432:5432 -e 'POSTGRES_PASSWORD=p@ssw0rd42' postgres-
Modify
.envto match your PostgreSQL server connection and credentials -
Initialize the PostgreSQL database by running
npm run initdb -
Create a free Okta Developer Account
-
Set up a new Okta application
- In the Applications section, click "Add Application"
- Select "Web" and click Next
- Name your application, and set the Login Redirect URIs to
http://localhost:8080/authorization-code/callback. By default, the web application will run locally at http://localhost:8080. Click Save.
-
On the Application screen under the General tab you will find a section for "Client Credentials." You will need to copy the values for "Client ID" and "Client secret" and paste them into the
.envfile forOKTA_CLIENT_IDandOKTA_CLIENT_SECRET, respectively. -
Copy the URL for your Okta developer account (e.g.
https://dev-123456-admin.oktapreview.com) and paste it into the.envfile as the value forOKTA_ORG_URL. Remove-adminfrom the URL. The setting should look similar to:
OKTA_ORG_URL=https://dev-123456.oktapreview.com
Launching application
To run the application in development mode:
npm run devBy default, the web application should now be running at http://localhost:8080.
Links
This example application uses:
Help
Please post any questions as comments on the blog post, or visit our Okta Developer Forums. You can also email developers@okta.com if you would like to create a support ticket.
License
Apache 2.0, see LICENSE.