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

express-gg

v2.1.5

Published

express code generator for controllers, models and routers.

Downloads

7

Readme

Express-gg: express great generator

How to install

Install it globally:

$  npm i -g express-gg

Install it locally:

$  npm i express-gg --save-dev

Initialize new project

$  gg init

gg init will create common express folders and files. After running the command, you can run:

$  npm start

gg command

You can use gg command to generate codes.

Before running gg, you need to add mongodb connection string to .env file:

  CONNECTION_STRING= <put-your-connection-string-here>

Also, gg command only run when your working directory is clean. If your current directory is not a git repo:

  $ git init
  $ git add .
  $ git commit -m "inital commit"

if you install the package globally, simply just run gg and follow the instruction:

  gg

Or, if you install it locally:

  npx gg

gg command with generate 5 files with sample codes:

  • controller: already implement crud operations handler
  • model: contains mongoose schema
  • routers: contains all common route needed for a resource
  • yupschema: this schema is used to define data validation rules
  • postman: sample postman collection, you can use this to import to postman

Generate test files

If you choose to generate test files, you got 35 pre-written test for all the routers.
These are the common tests that are the same for every resource.
Therefore, you need to add more tests specific to every route such as auth tests.

When you run gg command and select tests, it will check if your project missing any packages, you need to install them:

  npm install

To run test:

  npm test

Delete Files

if you install the package globally, simply just run express and follow the instruction:

  gg -d

Or, if you install it locally:

  npx gg -d

gg -d command only delete the files that are not modified in comparision with generated version.

Dependencies

You should only install this package as dev dependecies.

what are test_number, test_string, test_any?

These fields are being used to run test only, if you don't write test, simply just remove them.

Notes

In ./src/routers/index.js, there is one line of code:

// #insert__routers

This line of code is used to auto import newly created router to your express app when you run gg command. Don't delete it if you want auto import.