Introduction
NodeBootstrap is a project skeleton generator tool, which allows you to start a new Node project with a lot of essential batteries included. Some of the features out of the box include:
Comfortable dockerized setup, with code hot-reloading out of the box.
Well-structured Express.js installation for writing modularized, clean code
Advanced setup for automated tests
Database Migrations
Input validation and error-handling
Multi-core support for high-performance node computing
Installation
Installing NodeBootstrap is very easy. It is distributed as an NPM package so you need Node installed on your machine (we recommend using nvm). Once you have Node in place, installing Nodebootstrap is as easy as running;
Once you have nodebootstrap in place, you can bootstrap several types of code (Dockerized microservice, just a plain-old express webapp or non-dockerized API). The default mode is a Dockerized microservice (which we highly recommend). To install it, you are going to need a working Docker setup on your machine. It is easy to get Docker installed on your computer. Installers for major systems are available at: https://www.docker.com/community-edition
Once you have Docker in place, you can bootstrap a new Dockerized microservice by running:
and following instructions of the installer.
To see all of the options of nodebootstrap (including: how to change destination folder), please run:
Once the installation completes, you will have a functional version of the new project. Installer will output instructions about where to access the project and how to finish building it.
Last updated