In an attempt to simplify the process of starting up new node.js based projects, there exists two template projects to use as a foundation.
The two projects are node-web, a web server with express and react, and node-api, a RESTful api. Both of them use OpenID Connect as a mechanism for authorisation and authentication.
The projects can be found here:
https://github.com/KTH/node-web
https://github.com/KTH/node-api
It's important that we try to make changes that affect the template projects in the template projects themselves.
Are you looking for information about converting your app to use OpenID Connect? Read more
- Clone the repo
$ git clone [email protected]:KTH/node-web.git
- Install dependencies
$ npm install
- Create a
.env
file in the root of the project Read more - Add OIDC config in
.env
Read more - Start your Redis Read more
- Start the server Read more
$ npm run start-dev
And go to http://localhost:3000/node
Note: node-web is by default configured to connected to a api. If you don't have it running when starting node-web there will be errors in your log. No fear, node-web is still working.
-
Create a new git repository on github.com/KTH (or somewhere else).
-
Clone the node-web repository by using:
git clone [email protected]:KTH/node-web.git NEW_REPOSITORY_NAME
-
Navigate to the cloned project directory
-
Change remote repo
git remote add origin https://github.com/KTH/<NEW_REPOSITORY_NAME>.git
- Time to code!
Configuration during local development are stored in a .env
-file in the root of your project. This file needs to be added by you.
The .env file should never be pushed and is therefore included in the .gitignore file
When running the app in development mode it's configured to work out of the box except for the LDAP, OIDC (authentication) and SESSION_SECURE_COOKIE, read more about this below.
Most of the apps configuration resides in ./config/serverSettings.js
. Here you will find what is configured and how to override it.
Lets look at how to change the port the app is running on. Look for this line in serverSettings.js
port: getEnv('SERVER_PORT', devPort),
The getEnv function looks for an environment variable SERVER_PORT
. This is the variable you can override in the .env file.
Simply add a line in the .env file:
SERVER_PORT=8080
If you want changes that should be used by everyone developing your project, change the default variables in the settings-files (see the /config
folder).
Secrets during local development are ALWAYS stored in the .env
-file in the root of your project. This file is included in .gitignore so that it's never added to the repository.
Node-web needs OpenID Connect configuration in order for authentication to work properly:
OIDC_APPLICATION_ID=<FROM ADFS>
OIDC_CLIENT_SECRET=<FROM ADFS>
OIDC_TOKEN_SECRET=<Random string>
In server.js you will find examples of using OIDC for securing your routes.
We use Redis for storing sessions and data from Cortina (KTH.se CRM). You need to have a Redis running.
A recommended way to run Redis (and Mongodb) during development is kth-node-backend
Default configuration for connecting to redis is redis://localhost:6379/
.
If you would like to change this configuration you can add
REDIS_URI=<your-redis-uri>
to you .env file
If your application is going to be proxied on www.kth.se/your-path make sure you make the following configuration
Set a new value in your .env
-file for SERVICE_PUBLISH e.g
SERVICE_PUBLISH=/your-path
When you run the application locally during development on http you need to overrride SESSION_SECURE_COOKIE and set it to false.
SESSION_SECURE_COOKIE=false
More info, see config/commonSettings.js
#### Setup Parcel
Parcel needs a correct path when generating URLs.
Look at the build scripts in package.json
You need to change /node on both these lines. This is the path for the application.
...
"build": "bash ./build.sh prod /node",
"build-dev": "bash ./build.sh dev /node",
...
Example after change:
...
"build": "bash ./build.sh prod /your-path",
"build-dev": "bash ./build.sh dev /your-path",
...
Always start by installing dependencies:
$ npm install
Then you need to start the server:
$ npm run start-dev
This will
- run
parcel build
once to build SASS-files, and prepare browser JavaScript files - start
nodemon
which triggers restart when server-side files have been updated - run
parcel watch
which triggers a rebuild of browser assets when files have been updated
And go to http://localhost:3000/node
Before you start coding it is important that you have both listed extensions installed in VS Code.
$ npm install eslint prettier --save-dev
From Wikipedia: lint, or a linter, is a static code analysis tool used to flag programming errors, bugs, stylistic errors, and suspicious constructs.
We use ESLint for our linting and our default config comes from the module eslint-config-kth
See .eslintrc file
If you start Node.js from VS Code you can set breakpoints in your editor. The launch config will look like this:
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/app.js",
"cwd": "${workspaceRoot}",
"env": {
"NODE_ENV": "development"
}
}
Setting NODE_ENV is currently required.
- Parcel (Alternative to webpack)
- Babel 7
- Eslint
- Prettier
- Husky (Pre-commit)
- Sass
- React
- Mobx (State management)