npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

optional-generator

v2.0.8

Published

Generates boilerplate for nodejs with express framework in MVC structure and configuration of three database MySQL, MongoDB, PostgreSQL also provided.Also generates only database configuration, helper or index file as per option provided.

Downloads

27

Readme

  • 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

| Commands | Options | Inputs | Default | Description | | ------------- | ------------- | ------------- | ------------- | ------------- | | new | -d | Module name, Database type | Index | Generates application with provided name and database type | | module | -d | Module name, Database type | Index | Generates 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
);