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

@aeppic/install-repository-server

v3.42.0

Published

This module installs a simple web server to host binary files.

Downloads

412

Readme

Intro

@aeppic/install-repository-server installs the a repository server to host binary files compatible with @aeppic/install-server

It automatically registers (installs) the service as a SystemD service under /etc/systemd/system but does not enable or start it yet.

It is as simple as possible, directly contained in this module, and just copies itself to the install location. An install requires the service to not already run, existing data never gets touched.

Installing a custom repository server is only required when running accessing the curasystems registry is not possible.

Uploaded files should follow the naming convention <PACKAGE_NAME>@<VERSION>.tgz.

Security

Upload and Download is only possible if the correct token is available. These are stored in JSON files see below.

API

Launch example server

  • PORT=8881
  • DATA_PATH=test
  • UPLOAD_TOKENS=upload.json
  • DOWNLOAD_TOKENS=download.json

node server.js

Upload a new file

<filepath> equals a path to a packaged file <PACKAGE_NAME>@<VERSION>.tgz. E.g. [email protected].

Note: The path can include directories, but only the filename is used in the uploaded name.

curl -XPOST -H "Authorization: Bearer <TOKEN_FROM_UPLOAD_TOKENS_JSON>" --form file=@<filepath> http://localhost:8881

Download

curl -H "Authorization: Bearer <TOKEN_FROM_DOWNLOAD_TOKEN_JSON>" http://localhost:8881/<filename>

Tag a file

<tagname> is the name of the tag to use. It is a string with at least 3 characters and starting with a letter

curl -XPOST -H "Authorization: Bearer <TOKEN_FROM_UPLOAD_TOKENS_JSON>" http://localhost:8881/<filename>/tags/<tagname>

List all known files

curl -H "Authorization: Bearer <TOKEN_FROM_DOWNLOAD_TOKEN_JSON>" http://localhost:8881/

Which returns a json with all known files and dirs in the data folder. This list includes the uploaded files as well as uploaded tags. The tags are named <PACKAGE_NAME>@<TAG> and contain the name of the file it points to.