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

prism-framework

v1.3.6

Published

A declarative, efficient, and flexible library for backend JavaScript.

Readme

Prism GitHub license npm version

Prism is a library for backend JavaScript.

  • Declarative: Prism makes it painless to create application backends. Design simple Actions for each route in your application, and Prism will efficiently merge your updates with the global application state and save just the right data to the database, retaining a single-source of truth at the application level. Declarative APIs make your requests and responses more predictable, simpler to understand, and easier to debug.

  • State-Based: Build encapsulated Actions that manage their own state, then compose them to make complex APIs. Because the application state can be derived from the state of all Actions, there is no need to create a database schema, or set up an initial database Prism generates the database, and maintains the state of it as Actions are fired.

  • Use Everywhere: Prism doesn't make assumptions about your application's front-end, so you can develop new features in Prism with your existing front-end code. Prism can also be used along-side many other Prism Nodes in a service network, sharing state information while retaining a single source of truth.

API-only installation

Install Prism:

npm install prism-framework

Run an example project:

cd examples/todo-list-api
npm install
npm start

API-only flag

To run any Prism project without a database, append the npm start script with:

--skip-db

Database installation

Install MongoDB:

brew install mongodb

Create a data directory:

mkdir -p /data/db

Ensure write permissions to /data/db:

sudo chown -R `id -un` /data/db
# Enter your password

Run an example project:

cd examples/todo-list-api
npm install
npm start

Stop database background process:

npm stop

Database versioning

To run a project with a different version of the database, append the npm start script with:

dbVersion=2

and a new instance of the state-database will be created on node start. Easily switch between versions using the dbVersion flag, with any version name you like as the value.

Examples

Here is a basic API example to get you started:

/*
 * Action for "/todos"
 */

class Todos extends Prism.Action {
  constructor(path) {
    super(path);

    this.setShape({
      todos: Prism.Type.Array
    });

    this.setState({
      todos: [
        { title: 'Go to the gym', isComplete: false },
        { title: 'Finish work presentation', isComplete: false },
        { title: 'Day dream', isComplete: true }
      ]
    });
  }

  didDelete(params) {
    // do stuff after data was deleted
  }

  didGet(params) {
    // do stuff after data was retrieved
  }

  didPut(params) {
    // do stuff after data was saved
  }
}
/*
 * Node with one action
 */

class Node extends Prism.Node {
  constructor() {
    super();

    this.actions = [
      new Todos('/todos')
    ];
  }
}

This example exposes an endpoint for "/todos", with some bootstrapped data. As the endpoint is used (via GET, POST, PUT, DELETE) the database structure will change accordingly, without the developer having to manage those database operations.

Contributing

The main purpose of this repository is to continue to evolve Prism, making it faster and easier to use. Development of Prism happens in the open on GitHub, and I am grateful to the community for contributing bugfixes and improvements.

License

Prism is MIT licensed.