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

now-assistant

v1.1.1

Published

A server for deploying and aliasing [Zeit Now](https://now.sh) projects.

Downloads

11

Readme

Now Assistant

A server for deploying and aliasing Zeit Now projects.

The server exposes a single resource at /deploy. When a GET request is made to this, Now Assistant will:

  • Clone your git repository.
  • Sync files to Now.
  • Create a new Now deployment.
  • Alias the new deployment (once it has initialised).

Zeit are adding a feature like this to Now soon.

🚨 Jank alert

A lot of this is quite poorly written. I pieced it together from the Now API docs and the Now CLI source code quickly so that I can deploy my Gatsby static site. Still, you might find it useful 🤷‍.

There are lots of errors I'm not handling properly. Seeing as each deployment involves multiple calls to the Now API, I really should add some sturdier error handling.

Setup

Deploy to now

I use Now to host the Assistant. Currently, the Assistant does not read config from your project's now.json or package.json. Instead, set the following environment variables when you deploy the Assistant:

| Variable | Description | Required | Options | |---|---|---|---| | NOW_TOKEN | Now access token. | Required | | | GIT_REMOTE | The remote of the git repository to deploy. | Required | | | DEPLOYMENT_TYPE | Now deployment type. | Required | NPM, DOCKER, or STATIC | | ALIAS | The alias to set once the deployment is ready. | Optional | |

There are lots of options missing currently. When deploying using the Now CLI, it handles much of the config—and I've not included this in the Assistant.

Once the server is running, make a GET request to /deploy to kick off the process.

Next

  • Webhook verification.
  • The ability to add routes.
  • Better config handling.
  • Send an email when deployments or errors occur.