nodejs-init

### Documentation 1. [Installation](#installation) 2. [Usage](#usage) 4. [Structure](#structure)

Usage no npm install needed!

<script type="module">
  import nodejsInit from 'https://cdn.skypack.dev/nodejs-init';
</script>

README

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