1.0.4 • Published 3 years ago

def-struct v1.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
3 years ago

def-struct

Size License GitHub package.json version npm version

This is a NPM package to render a new pre-configures app for building REST API's via the terminal. Download

Installation

install the npm package globally with following command.

npm i -g def-struct

Usage

Execute the following command in the directory where you want to scaffold the node REST API project.

npx def-struct

Answer the few basic questions and then you are ready to go!!!

? Provide a Project name # default - name of working directory
? Provide project version # default - 1.0.0
? Provide project description
? Enter authors name
? Choose a Package Manager # [NPM or Yarn]
? Want to initialize empty git
? Want dotenv module? 
? Choose the database module # [MongoDB, Mongoose or None]
? Initialise Prettier or EsLint?
? Want to initialize the linter?

Test the created application

nodemon server.js

NOTE

  • Default port for the application configured is 8080, so make sure the port is not busy.
  • To edit the port edit LISTENER_PORT in .env file.
  • Before executing this command on terminal make sure to provide the MongoDB connection URL (if choosen).
  • The DB_URL and DB_NAME in the .env file corresponds to MongoDB URL and Database name respectively.

Installed dependencies

Default Dependencies provided

  • express
  • body-parser
  • morgan
  • cors

Optinal Dependencies

  • dotenv
  • mongoose
  • mongoDB

Default devDependencies

  • nodemon

Folder structure

.
├── middlewares
    └── middleware.js
├── models
├── node_modules
├── routes
    └── helloworld.js
├── .env
├── .eslintrc.json
├── .gitignore
├── index.html
├── package.json
├── package-lock.json
├── prettier.config.js
└── server.js

Content of the files

server.js

const express = require("express");
const bodyParser=require("body-parser");
const morgan=require("morgan");
const cors = require("cors");

const app = express();

// Middlewares
app.use(cors({ origin: true, credentials: true }));
app.use(morgan("dev"));
app.use(bodyParser.urlencoded({extended:true}));
app.use(bodyParser.json());

//require Routes
const helloworld = require("./routes/helloworld");

app.use("/", helloworld);

app.listen(process.env.LISTENER_PORT, err=>{
    if(err){
        console.log(err);
    } else {
        console.log("Successfully started on port ",process.env.LISTENER_PORT);
    }
});

prettier.config.js

module.exports = {
    tabWidth: 1,
    semi: true,
    singleQuote: true,
    trailingComma: 'es5',
};

.eslintrc.json

{
    "env": {
        "node": true,
        "commonjs": true,
        "es2020": true
    },
    "extends": ["plugin:prettier/recommended", "airbnb-base"],
    "parserOptions": {
        "ecmaVersion": 11
    },
    "rules": {
        "prettier/prettier": "error"
    },
    "plugins": ["prettier"]
}

helloworld.js

const router=require("express").Router();
const path = require("path");

router.get('/',function(req,res){
    res.sendFile(path.join(path.dirname(__dirname) + "/index.html"));
});

module.exports = router;

Contributing

Contributions are welcome. We accept contributions via Pull Requests. :smile:

⚖ License

Copyright 2020 Ashutosh Srivastava. Licensed under the MIT License