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 🙏

© 2025 – Pkg Stats / Ryan Hefner

carthage

v1.0.6

Published

An API Server and Framework with scaffold functions for node.js

Readme

Carthage

API Services Made Easy with Node.js

View the website at carthagejs.com.

Carthage is a web server and opinionated framework for building data manipulation-centric (Create Read Update Destroy) API services in Node.js for web, mobile or IoT apps.

Why Carthage?

Carthage is built upon an ideology of a robust, scalable architecture for data storage and retrieval APIs.

Carthage servers are not meant to be monoliths. They're stateless and distributed

Remember: one input, one output. Side effects dealing with model state should be managed via your Database. Carthage should not be used for streaming (long poll) requests and the HTTP request and response objects are intentionally obfuscated.

This also means you can not rely on socket connections. If you need to incorporate realtime functionality in your application, there should be a separate server responsible for this. It can interface with your Carthage API server and even receive events from it, but your API server should never have a stateful (prolonged) connection with any client.

Getting Started

Getting started with Carthage is easy.

  1. Download and install the newest Node 6.x version from nodejs.org
  2. In Terminal: type npm install carthage -g. (If you get an error, run sudo npm install carthage -g or fix permissions permanently by following these directions
  3. Again in Terminal, visit your projects folder. Perhaps with cd ~.
  4. Run carthage new.
  5. Follow the on screen instructions, enter your new project directory and type carthage s.

That's it! Your Carthage webserver is up and running.

Hooking Up Your Database

Once Carthage is up and running, it's likely that you'll want to connect your project to a database. Carthage comes packaged with Migrations, a Query Composer and full PostgreSQL integration.

First you'll need to install PostgreSQL.

Once you've installed Postgres, make sure to run:

$ createuser postgres -s

To create a default postgres superuser with no password. (Default for Carthage's configuration.)

First step then:

$ carthage db:create

To create the database and then,

$ carthage db:prepare

To prepare for migrations.

From here, carthage db:migrate runs all pending migrations and carthage db:rollback will roll back migrations, one at a time by default.

Server Types

Carthage works best when you follow its ideology, and that means creating a new service to solve specific Problem Domains of your application and business.

The main three suggestions are Branding Server, API Server and Application Server.

API Server

Create an API server using Carthage's Models, PostgreSQL integration, built-in JSON API formatting, and Query Composer (ORM). Bi-directional migrations are packaged with Carthage, meaning you can maintain the integrity of your data. User (including password) and OAuth AccessToken models and controllers are pre-built for you and can be added easily to your project.

Packaged with Carthage are workers, scheduling modules, and much more for all of your data needs.

We can look at what an API Controller might look like for, say, blog posts:

class BlogPostsController extends Carthage.Controller {

  index() {

    BlogPost.query()
      .join('user')
      .join('comments')
      .where(this.params.query)
      .end((err, blogPosts) => {

        this.respond(err || blogPosts);

      });

  }

  show() {

    BlogPost.find(this.params.route.id, (err, blogPost) => this.respond(err || blogPost));

  }

  create() {

    BlogPost.create(params.body, (err, blogPost) => this.respond(err || blogPost));

  }

  update() {

    BlogPost.update(this.params.route.id, params.body, (err, blogPost) => this.respond(err || blogPost));

  }

  destroy() {

    BlogPost.destroy(this.params.route.id, (err, blogPost) => this.respond(err || blogPost));

  }

}

Follow me on Twitter, @hatchvenom

Fork me on GitHub, SlimBN