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

crumbl-hoster

v1.4.1

Published

Hoster server for the Crumbl platform

Downloads

77

Readme

crumbl-hoster

Easy hosting server for the Crumbl™ platform

Github tag (latest by date) npm Github last commit Github issues NPM

This application is a simple hosting service for the Crumbl™ technology patented by Cyril Dever.

Usage

  1. Either you have set your own MongoDB environment compatible with crumbl-hoster's requirements:

    npm i crumbl-hoster && npm run compile && npm start
  2. Or you start the Docker container:

    git clone https://github.com/cyrildever/crumbl-hoster.git && cd crumbl-hoster && docker-compose up --build -d

    You might want to use the ./cleanup script (or ./cleanup.bat on Windows) before launching any new Docker session (especially when you've built the NPM project).

Running the application will write a 'crumbl-hoster.log' file.

Production

Change or adapt the following environment variables if need be:

  • HTTP_PORT: the HTTP port number (default: 8000);
  • MONGO_DOMAIN: the MongoDB server name (default: localhost);
  • MONGO_PORT: the MongoDB port number (default: 27017);
  • MONGO_DB: the name of the MongoDB database (default: crumbl);
  • MONGO_USERNAME: the MongoDB username;
  • MONGO_PASSWORD: the MongoDB password for this username;
  • MONGO_COLLECTION: the name of the collection to use (default: hoster).

API

// TODO Add headers identifying the requester.

The following endpoints are available:

  • GET /crumbl

This endpoint returns the full crumbled string from the passed related hashered prefix of a Crumbl, eg. http://localhost:8000/crumbl?hasheredSrc=1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef&token=12345678-90ab-cdef-1234-567890abcdef1

It expects 2 mandatory arguments:

  • hasheredSrc: the hashered prefix of the Crumbl;
  • token: a valid token (in the form of a UUID string).

It returns a 200 status code if found along with a JSON object in the body respecting the following format:

{
  "crumbled": "<The full found crumbled string>",
  "hasheredSrc": "1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
  • POST /crumbl

This endpoint records a crumbled string in the local database. It expects the request body to be the full crumbled string, eg.

$ curl --location --request POST 'localhost:8000/crumbl' --header 'Content-Type: text/plain' --data-raw '<The full crumbled string>'

It returns a 201 status code if success along with the verification hash string in the body.

License

The use of the crumbl-hoster server is subject to fees for commercial purpose and to the respect of the BSD2-Clause-Patent license.
Please contact me to get further information.