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

nocker-restifier

v1.0.1

Published

Fully restifier calls for nocker.

Downloads

53

Readme

nocker-restifier

Simplified restifier for nocker server. Built completely in typescript, right now only compatible with neDB.

Getting started

Install the module with: npm install nocker-restifier

Then in a typical nocker workflow:

var db = {
    tags: new NEDB({ filename: path.resolve('mock-db/tags.db'), autoload: true })
}

var nockerResources = nocker-restifier({collection: db.tags, resUrl: 'tags'})


Nocker.register(nockerResources);

// Start server on port 7003
Nocker.start({port: 9999, auth: false}, function() {
  console.log("Server is listening on port " + this.port + '\n');
})

/*
Initializing Nocker...

Route: GET /tags
Route: GET /tags/:_id
Route: POST /tags
Route: POST /tags/:_id/update
Route: POST /tags/:_id/delete

All routes registered correctly
*/

Documentation

mocker-restifier(input, options)

  • input: single model, or array of models, to generate the route. Every model have this structure:

    • collection(Collection instance): A database instance (neDB right now).
    • resUrl(String): Name of the resource (the module automatically compose the url).
    • ...: All of the general options, if you need to override any default option, you can do it only for this resource. This input are extending by the general options and the options here have the priority.
  • options(Object): Object with the options, all are optionals:

    • only: (Array): Array with the methods you want to generate, it allowed all by default. By default ['get', 'getOne', 'post', 'put', 'delete']
    • refParam (string): This allows you to modify the reference params for getOne, Put and Delete. By default "_id". This output the routes, /tags/:_id for this mentioned routes.
    • mode (string): This options affects only to a PUT and DELETE methods. That transforms to a POST using (resource/:id/update or resource/:id/delete), for systems that only allow you to use GET and POST requests.By default: "strict", you can use "normal" for use the PUT and DELETE methods.
    • baseUrl(String): baseUrl without first "/".
    • storageProvider: Name of the storage provider. By default: "nedb"

This funtion output an array of configuration that you can pass directly to the nocker generator function.

Development

Run npm install;npm run dev to watch the project, webpack compile the code automatically. Run npm build to build the normal and minified version.

##Examples

  • Strict mode:

    var db = {
        tags: new NEDB({ filename: path.resolve('mock-db/tags.db'), autoload: true })
    }
    
    var nockerResources = nocker-restifier({collection: db.tags, resUrl: 'tags'})
    
    
    Nocker.register(nockerResources);
    
    // Start server on port 7003
    Nocker.start({port: 9999, auth: false}, function() {
      console.log("Server is listening on port " + this.port + '\n');
    })
    
    /*
    Initializing Nocker...
    
    Route: GET /tags
    Route: GET /tags/:_id
    Route: POST /tags
    Route: POST /tags/:_id/update
    Route: POST /tags/:_id/delete
    
    All routes registered correctly
    */
    
  • Normal mode:

    var db = {
        tags: new NEDB({ filename: path.resolve('mock-db/tags.db'), autoload: true })
    }
    
    var nockerResources = nocker-restifier({collection: db.tags, resUrl: 'tags'}, {mode: 'normal'})
    
    
    Nocker.register(nockerResources);
    
    // Start server on port 7003
    Nocker.start({port: 9999, auth: false}, function() {
      console.log("Server is listening on port " + this.port + '\n');
    })
    
    /*
    Initializing Nocker...
    
    Route: GET /tags
    Route: GET /tags/:_id
    Route: POST /tags
    Route: PUT /tags/:_id
    Route: DELETE /tags/:_id
    
    All routes registered correctly
    */
    
  • Changing default refParam:

    var db = {
        tags: new NEDB({ filename: path.resolve('mock-db/tags.db'), autoload: true })
    }
    
    var nockerResources = nockerRestifier({collection: db.tags, resUrl: 'tags'}, {refParam: 'youAwesomeId'})
    
    
    Nocker.register(nockerResources);
    
    // Start server on port 7003
    Nocker.start({port: 9999, auth: false}, function() {
      console.log("Server is listening on port " + this.port + '\n');
    })
    
    /*
    Initializing Nocker...
    
    Route: GET /tags
    Route: GET /tags/:youAwesomeId
    Route: POST /tags
    Route: POST /tags/:youAwesomeId/update
    Route: POST /tags/:youAwesomeId/delete
    
    All routes registered correctly
    */
    

Credits

I couldn't do this without this awesome mocker library.

License

Licensed under the MIT license. 2015