DEV Community

Cover image for NodeJS API Setup Shell - Open Source
Pato
Pato

Posted on • Updated on

NodeJS API Setup Shell - Open Source

Hi Everyone,

A few days ago I made a video about my NodeJS API Setup Shell project. This video will be publish very soon by the company where I work @ThisDot. After creating the video I decided that it will be a good idea to open source the code.

It's Hacktoberfest month, is there anything better to do than Open Source?

What Is This Open Source Project About?

How many times is has happen to you that you are going to work on a NodeJS API project whether you are a beginner on NodeJS or not and you have to setup your project from scratch, many right? if you aren't using something like loopback or any other library or framework of this kind, this process can be very annoying. I have decided to create this shell project where all you have to do is clone the repo and start working with it by expanding the code to your needs.

The NodeJS API Shell project already has a few things setup for you like scripts from the package.json

   "scripts": {
    "test": "mocha -w './src/**/tests/**/*.js'",
    "coverage": "nyc --reporter=html npm run test",
    "start": "nodemon server.js"
   }
Enter fullscreen mode Exit fullscreen mode

I have installed also some of the most common middleware like:

   const body_parser = require('body-parser');
   const cors = require('cors');
Enter fullscreen mode Exit fullscreen mode

I have also setup the MongoDB Connection, a Config file with your basic Dev and Prod configurations, create an .ENV file, GRUNT and many other little things that you potentially will need in your NodeJS API project.

The implantation of the Shell is very basic with the purpose of beginners or experts to be able to use it.

Project Structure

Tools The Project Has

-NodeJS
-ExpressJS
-MongoDB Connection
-Moca/Chai
-Grunt
-Nodemon
-Mongoose
-Test coverage with NYC

Contribute

Open Source Love

If you are into NodeJS and have seen repetitive things that you add to your NodeJS API setups all the time, feel free to add them to the repo.

-Fork the repo: https://github.com/thisdot/node-enterprise-setup-shell
-Star the repo.
-Add some code.
-Submit a PR.

Top comments (2)

Collapse
 
dlukanin profile image
Dmitry Lukanin

What about yeoman? Thought that there are many similar solutions using it.

Collapse
 
devpato profile image
Pato

Feel free to add it to the projectf not I'll take a look to it an add it :) thanks !!