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

service-o-matic

v1.0.0

Published

A node.js module for turning modules and libraries into web services

Downloads

21

Readme

Service-O-Matic 1.0

Service-O-Matic is a module for turning other modules into services.

  • It's great for API prototyping and getting things up and running quickly.
  • You can expose multiple modules/libriaries as webservices in once instance.
  • It generates documentation and web forms for each method.

Email: Iain Collins [email protected] Twitter: @iaincollins

Limitations and supported features

  • Service-O-Matic supports both promises and methods that take callbacks (it attempts to work out which to support then tries to fall back gracefully).
  • The services are RESTful / JSON with Access-Control-Allow-Origin set to "*" (POST, PUT, GET, DELETE methods are supported).
  • Service-O-Matic does not support functions that take objects as their arguments. Everything sent over a RESTful interface is a string.

Example usage

Using Service-O-Matic is very straightforward. Let's take a simple example service like the Random Password Generator.

It's normally invoked like this:

var passwordGenerator = require('random-password-generator');
var newPassword = passwordGenerator.generate();

To expose it as a webservice with Service-O-Matic, all you need to do is:

var service = require('service-o-matic');
service.addService('Password Generator', require('random-password-generator'));
service.startServices();
  • The 1st argument to addService() is what you want to call your service.
  • The 2nd argument to addService() the module/library you want to expose.

Exposing multiple services

The following example shows how to turn modules which provide a Dictionary lookup and a Thesaurus checker into services.

The homepage of the server ("/") will list all the services currently being exposed - you can then click through to see their methods and the arguments each method takes and test them out.

In this example the third argument is passed - an array of methods to expose (which overrides the default behaviour, which is to expose all methods).

var service = require('service-o-matic');
service.addService('Dictionary', require('wordnet'), ['lookup']);
service.addService('Thesaurus', require('thesaurus'), ['find']);
service.startServices();

Advanced usage

Some modules provide a range of features and you might need to expose elements of them as seperate services. The below example shows how to expose 3 different services from the countryData module:

var service = require('service-o-matic');
var countryData = require('country-data');
service.addService('Countries', countryData.countries,);
service.addService('Regions', countryData.regions);
service.addService('Currencies', countryData.currencies);
service.startServices(8080);

In the example above a port number has also been passed to startService().

You can also specify the port via the PORT shell variable.