2.0.8 • Published 2 years ago

optional-generator v2.0.8

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago
  • Generates boilerplate for nodejs with express framework in MVC structure
  • Makes database configuration with MySQL, mongoDB, PostgreSQL based on selected options.
  • Also generates only database configuration, helper or index file as per option provided.
  • This package will not run any database migration commands. database commands

New features

  • Generates CRUD with MySQL, MongoDB, PostgreSQL database configuration

File structure

.
├── ...                   
├── src                          # Source files 
    ├── config                   # Configuration files
    ├── controllers              # Controller files
    ├── routes                   # Route files
    ├── services                 # Service files
    ├── helper                   # utils,constant files  
├── app.js
└── ...

Installation

Before installing, download and install Node.js. Node.js 0.10 or higher is required.

If this is a brand new project, make sure to create a package.json first with the npm init command.

Installation is done using the npm install command:

$ npm install optional-generator

This package also contains CLI command, to use CLI command - install package globally.

$ npm install optional-generator -g

Usage

CommandsOptionsInputsDefaultDescription
new-dModule name, Database typeIndexGenerates application with provided name and database type
module-dModule name, Database typeIndexGenerates CRUD with provided name and database type
helper---Generate common useful files(responseHandler.js/constant.js)
database-Database type-Generate database configuration file(database,js)
app---Generate application root file

With CLI command

Install package globally

$ npm install optional-generator -g

Create new application:

$ hyung n user
$ hyung n user -d mongodb

Create only module files(controller ,service and route):

$ hyung m user

Create only helper files:

$ hyung hp

Create only database configuration files:

$ hyung c

Create only index file(app.js):

$ hyung a

Install package locally/ Directory level

$ npm init -y 
$ npm install optional-generator -s

Write script in package.json with option you want to provide.

"scripts": {
    "create": "hyung n"
},

or directly run command on terminal

$ npx hyung n -d mysql

Run script to create app.js(with or without custom module name)

$ npm run create 

or

$ npm run create user

Start the server:

$ node app.js

or

$ nodemon app.js

View the website at: http://localhost:3000

Database commands

MongoDB

> show dbs
> use boilerplate
> db.boilerplate.insert({ name: "Park" })
> show collections

MySQL

CREATE DATABASE boilerplate;

CREATE TABLE `users` (
  `id` int(11) PRIMARY KEY NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL
) 

PostgreSQL

CREATE DATABASE boilerplate;

CREATE TABLE users(
  id SERIAL PRIMARY KEY NOT NULL,
  name varchar(50) NOT NULL
);
2.0.8

2 years ago

2.0.7

3 years ago

2.0.6

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago