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 🙏

© 2026 – Pkg Stats / Ryan Hefner

pigalle-rest

v0.1.2

Published

Build quickly NodeJS/Express.js RESTful applications using the Pigalle collection of decorators!

Readme

Pigalle Rest Build Status

Quickly reate NodeJS/Express.js RESTful applications using the Pigalle collection of decorators!

Requires

Installation

npm install pigalle-rest

Tests

npm test

Build

npm install
gulp babel

Live development

gulp watch

Usage

Example

See the example: test/testApp/

Controller: app/controller.js

import {Autowired, Component, container} from 'pigalle-container';
import {RequestMapping, RequestMethod} from 'pigalle-rest';

@Autowired()
@Component('restControllerComponent')
export default class Controller {
  constructor() {
    this._memoryDB = ['item1'];
  }

  @RequestMapping({value: '/api/items', method: RequestMethod.GET})
  list(req, res, next) {
    return res.json(this._memoryDB);
  }

  @RequestMapping({value: '/api/item', method: RequestMethod.POST})
  create(req, res, next) {
    const data = req.body;
    if (data.item) {
      this._memoryDB.push(data.item);
    }
    return res.json(data)
  }
}

ExpressJS server: server.js

import express from 'express';
import path from 'path';
import http from 'http';
import util from 'util';
import bodyParser from 'body-parser';

import {container} from 'pigalle-container';
import {RestRunner} from 'pigalle-rest';

// The ExpressJS application.
const app = express();
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: false}));


// The application directory.
const appDir = path.join(__dirname, 'app/');

// The REST router!
const restRunner = RestRunner.instance;
restRunner.app = app;
restRunner.native = new express.Router(); // The native express router.

// Run the REST application!
container.scan(appDir).run().inject().run().done((instance) => {
  restRunner.initializeRouter().run().done((restRunner) => {

    const server = http.createServer(app);
    server.listen(3000, () => {
      console.log('Server is listening: http://localhost:3000/');
    });

  }).error((err) => {
    console.log('Error when initialize Pigalle RestRunner: ' + err.stack);
  });

}).error((err) => {
  console.log('Error when initialize container: ' + err.stack);
});

Run application

node ./node_modules/babel-cli/bin/babel-node.js \
    --presets es2015,stage-1 \
    --plugins transform-decorators-legacy \
    test/testApp/server.js
    

Call services

  • GET /api/items to obtain the list of items
  • POST /api/item to add an item to list

Change history

v0.1.0 (2016-09-28)

  • Transform RestRunner as a real singleton.
  • The attribute nativeRouter of RestRunner has been renamed to native.
  • By using the unique container now provided by pigalle-container:
    • setContainer method has been removed in the RestRunner class;
    • @RequestMapping: the container parameter has been removed.
    • @RequestMapping: the component parameter has been removed (automatic binding).
  • Upgrade dependencies:
  • Upgrade README.

v0.0.2

  • Add preprocess argument in @RequestMapping.

v0.0.1

Initial version including:

  • RequestMapping decorator
  • RequestMethod enum

License

The MIT License (MIT)

Copyright (c) 2016 9 Février <[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.