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

node-express-mongodb

v1.1.5

Published

This project allows you to create a powerful REST API in a very short time. It relies on

Downloads

15

Readme

NODE-EXPRESS-MONGODB.API

This project allows you to create a powerful REST API in a very short time. It relies on

NodeJS | Express | MongoDB | Mongoose | PassportJS

npm npm npm

GitHub forks GitHub stars

Table of Contents

Instalation

npm install node-express-mongodb --save

Usage

Once express application is created we need to instantiate node-express-mongodb:

require('node-express-mongodb')(app, options, passport);

Options

Key | Description --- | --- APP_NAME | Name of the application MONGODB_URI | MongoDB database URI HOST | Host url. Only for Postman purposes (optional) PORT | Port number. Only for Postman purposes (optional) MODELS_PATH | Path where the models are located. Default: ./app/models (optional) DATA_PATH | Path where data for generation is located. Default: ./app/data (optional)

Models

The way it generates the API is by reading each of the model definitions at models path. We need to create one definition for each of the models in our app. This needs to be a json similar to the one below:

{
    "name": "BasicExample",
    "route": "basicexample",
    "properties": {
        "property1": {
            "type": "String"
        },
        "property2": {
            "type": "String",
            "methodsNotAllowed": {
                "update": true
            }
        },
        "property3": {
            "type": "Number",
            "methodsNotAllowed": {
                "add": true
            }
        }
    },
    "methods": {
        "getAll": { "enabled": true },
        "get": { "enabled": true, "passportStrategy": "admin" },
        "add": { "enabled": true },
        "update": { "enabled": true },
        "remove": { "enabled": true }
    }
}

Once the app is started it generates all the routes based on them.

Default routes

There are 5 default routes. These are created if they are activated in the model.

Route | Description --- | --- GET api/[modelRoute] | Returns all the documents GET api/[modelRoute]/:id | Returns one document POST api/[modelRoute] | Creates one document PUT api/[modelRoute]/:id | Updates one document DELETE api/[modelRoute]/:id | Remove one document

Custom routes

It is possible to create custom routes. For this you have to add a route file to ./app/routes and the service to use to ./app/services. Both files must be named as the route in modeldefinition.

Authentication

It is possible to add authentication to the routes by PassportJS. The way to do this is by defining the passportStrategyin the method object:

"methods": {"get": { "enabled": true, "passportStrategy": "admin" }}

[!] Note that in this case admin strategy would need to be defined in passport.js

Data generation

It is possible to auto generate data in the DB for dev purposes by just adding a collection to a json file named as the model in ./generation/data.

In order to run this task an extra endpoint is set up. /api/admin/generate.

Postman project generation

A Postman configuration object is generated by default so it can be easily imporated in Postman to get the collection of all endpoints in the app.

All you have to do in Postman is

Import > Import From Link and copying the follow app endpoint:

/api/postman

License

MIT