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

nodejs-backpack

v2.0.28

Published

NodeJs Backpack is a powerful tool designed to simplify the development of Node.js REST APIs with ease and precision. It provides a streamlined workflow by automatically generating Mongoose schemas and handling the necessary configurations in your project

Downloads

123

Readme

NodeJs Backpack

NodeJs Backpack is a powerful tool designed to simplify the development of Node.js REST APIs with ease and precision. It provides a streamlined workflow by automatically generating Mongoose schemas and handling the necessary configurations in your project.

With just a few simple commands, NodeJs Backpack can create REST API components such as controllers and routes, while also ensuring route validation is implemented flawlessly. Additionally, NodeJs Backpack offers a command to generate sample files, providing a solid starting point for your project.

With NodeJs Backpack, you can quickly set up your project and focus on building your APIs, letting the tool handle the repetitive tasks and allowing you to follow a smooth development process.

Installation

Install package globally with npm

npm install nodejs-backpack -g

Features

  • Robust REST APIs
  • Focus on optimized code
  • Auto file creation for schemas, routes, controllers and validations
  • helpers (modelsParams, appendParams, etc)
  • Mongoose DB support,
  • AppendParams for append data in APIs using Mongoose schema
  • Executable for generating applications quickly
  • Auto create logic for API CRUD

YouTube Tutorial

Watch the video

Quick Start (Rest APIs)

The quickest way to get started with nodejs-backpack is to utilize the executable to generate an REST APIs as shown below:

Step1: Create an empty directory:

mkdir NodeJs-REST-APIs

Step2: Enter into directory:

cd NodeJs-REST-APIs

Step3: Run Command:

nodejs-backpack sample:files
  • File "sample-app.js", "sample-package.json" & ".sample-env" created in the root directory.

  • Rename sample files to "app.js", "package.json" & ".env" which are created in the root directory.

  • Update .env > DB=mongodb+srv... with valid connection.

PORT=3000
DB="mongodb+srv://........mongodb.net/node_backpack"
JWT_SIGNATURE=node_backpack
HOST=http://localhost:3000

Step4: Run Command:

npm install

Step5: Run Command:

nodejs-backpack make:schema Tests

Step6: Run Command:

nodejs-backpack make:apis Test --url=tests --schema=Tests
  • Rename schema name in comand as per your requirement nodejs-backpack make:apis Test --url=tests --schema=Tests.
  • Example: nodejs-backpack make:apis ROUTE_NAME --url=ROUTE_URL --schema=SCHEMA_NAME.
  • Note: SCHEMA_NAME must exist in model directory /models/SCHEMA_NAME

Step7: Install 'nodemon' on global level for development purpose:

npm install nodemon -g

Step8: Now your APIs are ready to use and Server your project with:

npm run dev

Step9: Open Postman and create new collection and check the below apis:

  • Based on my command, nodejs-backpack make:apis Test --url=tests --schema=Tests.
  • ROUTE_NAME = Test
  • ROUTE_URL = tests
  • SCHEMA_NAME = Tests
  • Below are list of APIs created by commands .../api/ROUTE_URL:
  • Get List API: GET: http://localhost:3000/api/tests?page_no=1&page_limit=20&search= (Parameters: page_no, page_limit, search)
  • Get Detail API: GET: http://localhost:3000/api/tests/64a41036174844d0394e7b2f
  • Store API: POST: http://localhost:3000/api/tests (Body-Parameters: based on model schema)
  • Update API: PUT: http://localhost:3000/api/tests/64a41036174844d0394e7b2f (Body-Parameters: based on model schema)
  • Delete API: DELETE: http://localhost:3000/api/tests/64a41036174844d0394e7b2f

Quick Start (Authentication APIs)

The quickest way to get started with signup, register, forgot-password, reset-password, get-profile API's using nodejs-backpack is to utilize the executable to generate an REST APIs as shown below:

Step1: Run Command:

nodejs-backpack make:auth
  • Under ./routes/* 'IndexRoute.js' and 'AuthRoute.js' file will be create/updated.
  • 'AuthController.js' file will be create in the './controllers/AuthController.js' folder with all neccessary logics.
  • 'AuthMiddleware.js' file will be create in the './middleware/AuthMiddleware.js' folder with all neccessary JWT token verification logics.
  • mailtrap.js file will be create in the './config/mailtrap.js' folder where you can configure SMTP mail credentials.
  • Under ./models/* 'User.js' and 'ResetToken.js' file will be create.

Step2: Open Postman and create new collection and check the below apis:

  • Below are list of APIs created by commands .../api/ROUTE_URL:
  • Register API: POST: http://localhost:3000/api/register (Body-Parameters: first_name, last_name, email, password)
  • Login API: POST: http://localhost:3000/api/login (Body-Parameters: email, password)
  • Forgot Password API: POST: http://localhost:3000/api/forgot-password (Body-Parameters: email)
  • Reset Password API: POST: http://localhost:3000/api/reset-password (Body-Parameters: email, password, reset_token). Note: Forgot password reset link will contain 'reset_token' on mail.
  • Logout API: GET: http://localhost:3000/api/logout
  • Get Profile API: GET: http://localhost:3000/api/get-profile

Environment Variables

To run this project, you will need to add the following environment variables to your .env file.

PORT=3000
DB="mongodb+srv://........mongodb.net/node_backpack"
JWT_SIGNATURE=node_backpack
HOST=http://localhost:3000

Authors