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

@quilt/quilt

v0.4.2

Published

[![Build Status](https://travis-ci.org/quilt/quilt.svg?branch=master)](https://travis-ci.org/quilt/quilt) [![Go Report Card](https://goreportcard.com/badge/github.com/quilt/quilt)](https://goreportcard.com/report/github.com/quilt/quilt) [![Code Coverage](

Downloads

13

Readme

Build Status Go Report Card Code Coverage

Quilt

Deploying applications to the cloud can be painful. Booting virtual machines, configuring networks, and setting up databases, requires massive amounts of specialized knowledge — knowledge that’s scattered across documentation, blog posts, tutorials, and source code.

Quilt aims to make sharing this knowledge simple by encoding it in JavaScript. Just as developers package, share, and reuse application code, Quilt’s JavaScript framework makes it possible to package, share, and reuse the knowledge necessary to run applications in the cloud.

To take this knowledge into production, simply quilt run the JavaScript blueprint of your application. Quilt will set up virtual machines, configure a secure network, install containers, and whatever else is needed to get up and running smoothly on your favorite cloud provider.

Deploy Quickly on...

providers

Install

Install Quilt with npm:

$ npm install -g @quilt/install

Check out more in our Getting Started Guide.

API

Run any container.

let web = new Container('web', 'someNodejsImage');

Load balance traffic.

let webGroup = web.replicate(3);
let webLoadBalancer = new LoadBalancer('web-lb', webGroup); // A load balancer over 3 containers.

Share and import blueprints via npm.

const Redis = require('@quilt/redis');
let redis = new Redis(2, 'AUTH_PASSWORD'); // 2 Redis database replicas.

Set up a secure network.

allow(publicInternet, webGroup, 80); // Open the webservers' port 80 to the public internet.
redis.allowFrom(webGroup, redis.port); // Let the web app communicate with Redis.

Deploy VMs on any supported cloud provider.

let vm = new Machine({
  provider: 'Amazon',
  size: 't2.micro'
});

See full example blueprints and check out our docs.

Quilt CLI

# Deploy your application.
$ quilt run ./someBlueprint.js

# SSH into VMs and containers.
$ quilt ssh <ID>

# Check the status of your deployment.
$ quilt show

This is just a small sample of the Quilt CLI. Check out more handy commands for managing your deployment.

Get Started

We would love to hear if you have any questions, suggestions, or other comments!