A NodeJS boilerplate to quickly build server apps with express framework and EJS template engine.
Clone this repository with
git clone https://github.com/RootDev4/NodeJS-Express-Boilerplate.git
and install the dependencies with
npm install
Start your webserver by running
npm start
This project provides SSL support. Please replace the files in ssl/ directory with your .perm files and set use_ssl=true
in .env configuration file to enable a HTTPS webserver.
This repository comes with a bunch of pre-installed libraries and frameworks.
Fast, unopinionated, minimalist web framework.
CORS is a NodeJS package for providing an express middleware that can be used to enable CORS with various options.
Helmet helps you secure your express apps by setting various HTTP headers.
Parse Cookie header and populate req.cookies with an object keyed by the cookie names.
Dotenv is a zero-dependency module that loads environment variables from a .env file into process.env.
Embedded JavaScript template engine.
The most popular front-end frameworks for developing dynamic and responsive projects on the web.
Simple monitor script for use during development of a NodeJS app. Start your project in monitor mode by running
npm run dev