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

swagapi

v0.4.0

Published

SWAGAPI framework

Readme

SWAGAPI is a boilerplate to reduce programming time for node APIs using some shortcuts to make life easier. The SWAGAPI is based in some concepts: - Use directory structure for routes as possible to make easier to read the code - A event structure to customize behaviours without complexity - Blueprints with commom functions for apis to speed up - Keep some control of the modules with some predefined ones - Use a simple ROUTES+LIBRARIES+MIDDLEWARE+BOOT concept to make everything.

ROUTES

Using swagger 1. Create a swagger file and put in /app/config 2. Configure api.jon with the correct information 3. Put the files for your route in /app/routesApi with a method for each request type

	module.exports = {
		post: async function (req, res) {
			//code for post
		},
		get: async function (req, res) {
			//code for get
		}
	};
4. Security policy - Just put a file with the same name of policy inside /app/security

5. Use the example code above for security policy:
	
	async function authorize(req, res, next) {
		 if (true) {
				 return next();
		 } else {
			 res.status(403).send({sucess:false, error:"Unauthorized."});
		 }
	}
	module.exports = authorize;

Using only js files 1. Just put the file in /app/routesDir and it will create a route automaticaly 2. Use the follow structure

	var router = require('express').Router();
	router.get('/', swagapi.security.apikey, function(req, res, next) {
			//code for get
	});

VIEWS

You can acces render views with req.render(viewName, data)

Template language We use the EJS module for it ( http://ejs.co/ )

View events

views.viewName.before
[views]		- event area
[viewName]	- view name as used in render() funciton
[moment]	- before or after
[*] 		- can use wild cards in parameters

eventFunction (ctx) {
	// the ctx parameter will come with details like req, res, viewName, data

}

MODELS - Use Waterline documentation

You can acces models from swagapi.models - Waterline models swagapi.imodels - custom interface with event trigger

Models events

models.modelName.before.create	- This event will trigger before create a register in modelName
[models] - event area
[modelName] - model name
[before] 	- moment, it can be 'before' or 'after'
[create]	- operation, can be create, find, findOne, update and delete
[*] 		- can use wild cards in parameters

eventFunction (ctx) {
	// the ctx parameter will come with details like req, res, criteria, model, modelName, data...

}

MODULES

The system auto load some modules, wich you can control or configure from /app/config/models.hjson (commented json)

INIT - Run every script in /app/init at start

Put the file there with the proper config and it will run at app start Follow the structure:

module.exports = {
	priority: 999,	// priority among others
	enabled: true,	// you can enable/disable
	name: "Tests",  // avoid same name of others
	run: async function () {
		console.log(" your code here");
	}
}

Middleware - Run every script in /app/middleware at start

Put the file there with the proper config and it will run at app start express Follow the structure:

module.exports = {
	priority: 999,	// priority among others
	enabled: true,	// you can enable/disable
	name: "Tests",  // avoid same name of others
	run: async function (appExpress) {
		console.log(" your code here");
	}
}

LIB - Auto load libraries from /app/lib

All libs will be loaded into swagapi.lib.YourLibName.YourFunction(); Follow the structure:

function myLib() {
	return true;
};
myLib.funcUtil = async function (url, query, headers) {
	console.log(url);
};
module.exports = myLib;

PUBLIC - Serve your static content

Just put inside /app/public

BLUEPRINTS - Deal with request complexity in a easy way

Has the functions: create, update, delete, find, count and findOne

module.exports = {
	post: async function (req, res) {
		swagapi.swagapi.lib.blueprints.create({ req: req, res: res, modelName: "tag" });
	},
	get: async function (req, res) {
		swagapi.swagapi.lib.blueprints.find({ req: req, res: res, modelName: "tag" });
	}

};

You can check additional parameters inside the code in \SWAGAPI\lib\blueprints[operation].js

GLOBAL ERROR HANDLING -

There is a global error threatment with express.. To get better error messages: • you DONT need to use try/cath • always use await in front the async functions (blueprints, imodels, etc)