0.0.1 • Published 5 years ago

nodejs-init v0.0.1

Weekly downloads
2
License
ISC
Repository
gitlab
Last release
5 years ago

nodejs-init

Documentation

  1. Installation
  2. Usage
  3. Structure

Installation

Get started with nodejs-init by installing the node module with yarn or npm:

npm install -g nodejs-init

or

yarn add global nodejs-init

Usage

nodejs-init <project-name>

Structure

  .
  ├──package.json
  ├──index.js
  ├──debugging:
  │   └──index.js
  └──src:
      ├──assets:
      │   ├──package.json
      │   ├──index.js
      │   └──data:
      │       ├── ...
      │       └──index.js
      ├──configs:
      │   ├──package.json
      │   └──index.js
      ├──routers:
      │   ├──package.json
      │   └───index.js
      ├──db:
      │   ├──package.json
      │   ├──index.js
      │   ├──models:
      │   │   ├── ...
      │   │   └──index.js
      │   ├──migrations:
      │   │   ├── ...
      │   │   └──index.js
      │   └──seeds:
      │       ├── ...
      │       └──index.js
      ├──core:
      │   ├── ...
      │   ├──package.json
      │   └───index.js
      ├──utils:
      │   ├──package.json
      │   ├──index.js
      │   ├──strings.js
      │   ├──constants.js
      │   ├──functions.js       
      │   └──types.js
      └──app.js