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-restacular

v0.3.0

Published

Node REST Service generator based on Express 4.x and Waterline.

Downloads

6

Readme

Node RESTacular

Spectacular REST service generator.

It works with all kind of database, simply download an adapter and run RESTacular!

Build Status npm version Dependency Status

Installation

Install the npm package

$ npm install node-restacular

Database Adapter

RESTacular use Waterline ORM, so you are free to use (or write) its adapters.

Database Adapters List.

In this example mongodb is choosen: sails-mongodb

$ npm install sails-mongo

Features

  • Full configurable services
  • Storage system supporting different database engines
  • Auto generated CRUD operations
  • ACL permissions for single routes/method

Usage

    
    var restacular = require('node-restacular'),
           		     restConfiguration;

    restConfiguration = {
        server: Object, 	// Optional. Docs in #Server Configuration section
       	storage: Object,    // Required. Docs in #Storage Configuration section
        model: Function,    // Required. Docs in #Model section
        acl: Object		    // Optional. Docs in #ACL section
    };

    restacular.launchServer(restConfiguration, function() {
        //Run additional code if you need!
    }); 

Server Configuration

Set your server configuration. server settings are optional and default generated url is http://localhost:3000/api

    
    {
        server: {
			hostname: "localhost", 	// Default value
			port: "3000", 			// Default value
			apiPrefix: "api"		// Default value.

		},
		
		...
	}

Storage Configuration

Set your storage configuration. storage settings are required and depend on your database storage and adapter

	
	{
		storage: {
            adapter: require("db-adapter"), //Example: sails-mongo
	        host: "db-host",			    //Example: localhost
	        port: "db-port",			    //Example 27017
	        username: "db-user",		    //Example root
	        password: "db-pass",		    //Example root
	        database: "db-name"			    //Example testdb
		},

		...

	}

Model

Define your Model Object, describe your resources with their properties , associations and behaviours.

    
    {
        model: {
            <resource-name>: {
                <property-name>: {
                    type: <data-type>,
                    <attribute-name>: <attribute-value>,
                },
                <association-field-name>: {
                  model: <resource-name> // One-to-One reference to association-resource
                }
                behaviours: {
                    <lifecycle-callback>: function(values, next){
                        console.log(values);
                        next();
                    }
                }
            },
            
            ...
        }
    }

<resource-name> correspond to db table name.

<property-name> correspond to db table column name.

<resource-name> will match CRUD generated route. lowercase recommended.

Data Types and Property Attributes

Read official Waterline Data Type and Attributes

Associations Documentation

Read official Waterline Associations

Behaviours and Lifecycle Callbacks Documentation

Read official Waterline Lifecycle Callback

CRUD

After model definitions CRUD operations are automatically binded to router:

method        route                       action
------------------------------------------------------------
GET           /:resource                  find all
GET           /:resource/count            get count
GET           /:resource/:id              find by id
POST          /:resource                  create new
PUT           /:resource/:id              update by id
DELETE        /:resource/:id              delete
DELETE        /:resource                  delete all

Access Control List

Routes access is public by default.

If you don't set any acl CRUD are exposed to everyone.

With acl configuration you can choose access rules for any resource/method.

You can specify wildcard rules with char: *


        acl: {
            "*": {
                "GET": {
                    "from-ip": "*"
                },
                "POST": {
                    "from-ip": "*"
                },
                "PUT": {
                   "from-ip": "*"
                },
                "DELETE": {
                    "from-ip": "*"
                }
            },
            "resource-name": {
                "GET": {
                    "from-ip": ["127.0.0.1"]
                },
                "POST": {
                    "from-ip": ["127.0.0.1"]
                },
                "PUT": {
                   "from-ip": "none"
                },
                "DELETE": {
                    "from-ip": "none"
                }
            }
        },

        ...

In the example above resource-name is enabled only from localhost for GET and POST methods, PUT and DELETE are disabled.

All other resources are public, following * generic rule.

Behind Proxy: Problem

If you are behind a proxy, your "from-ip" will always be the Proxy IP and you can't check who is really calling the APIs.

It can happen, for example, if you put Apache Webserver in front of Node.js and you use mod_proxy to send calls internally, avoinding CORS requests.

Example of a Proxy Apache conf

    <VirtualHost *:80>
        ServerName restacular.local
        ProxyPass /api http://localhost:3000/api
        ProxyPassReverse /api http://localhost:3000/api
    </VirtualHost>

Behind Proxy ACL Configuration

To avoid the problem described above you can set another property on your ACL rules: from-proxy

ACL will check your HTTP headers, validating rules on X-Forwarded-For value.

For wildcards or any resource/method you can set: from-ip | from-proxy properties.

    acl: {
        "*": {
            "POST": {
                "from-ip": ["127.0.0.1"],
                "from-proxy": ["127.0.0.1"]
            }
        },
        "resource-name": {
            "GET": {
                "from-ip": ["127.0.0.1"],
                "from-proxy": ["192.168.1.1"]
            },
            ...
        },
        ...
    }

MIT License

Copyright (C) 2015 Dario Civallero <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.