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

finalizer

v0.2.5

Published

CLI client for Finalizer Server. Prepares and downloads npm builds without stressing your site.

Downloads

18

Readme

Finalizer

Build Status

CLI client for Finalizer Server. Prepares and downloads npm builds without stressing your site. This project is still under development. Things will break.

Installation

After setting up your npm build server with Finalizer Server. Install this CLI client globally

npm install -g finalizer

Configuration

Make sure that you have a finalizer.json file on the root of your project (the same location as the package.json) that specifies the url on which the build server can be accessed.

{
  "baseUrl": "http://finalizer.myurl.com"
}

Creating a project

This command will create (or link) the current project to the build server. This should be done only once. Once the project is created it will trigger the first build on the server.

  • <name> Project name. The name used here will be stored on the server for later access.
finalizer create <name>

Download latest build

This will download the latest npm dependencies from the build server. The project must exist already on the build server, created with the create command.

finalizer download <name>

This command will:

  • Download the dependencies in a compressed .tar file.
  • Extract them and run npm rebuild to relink these dependencies.

Build project

This command will trigger a new build on the build server. The project must exist already on the build server, created with the create command.

finalizer build <name>

If the package.json has not changed since the last build, the build will not be created. This will prevent the creation of innecesary builds on the server.

Initialize project

This command will create a basic finalizer.json file with default settings on the project directory.

finalizer init

Check connection to build server

This will make a basic http request to the build server to make sure that a connection to it is correctly established.

finalizer check

Development

After cloning your repo

git clone [email protected]:yourusername/finalizer.git && cd finalizer

Install your dependencies with npm

npm install

Tests are written with Mocha and expect.js, run the test suite with:

npm test

License

MIT