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

rel-discovery-prototyping

v3.2.0

Published

Prototypes galore

Downloads

3

Readme

GUM/e Prototyping

Prototype various self-contained experimental components for use across different services.

Access the prototype demo site at https://rel-discovery-prototyping.cnnio.net/

Table of Contents

Setup

$ nvm use
$ make install

Component Development

You can use a combination of any of the following to build a new component with this app...

To create a new component

The recommended way to scaffold a new component is to run plop using the following command syntax:

$ make generate-component

Begin development

$ make develop

Then in a browser, visit: http://localhost:5000/. Your new component's folder name will appear as a link on the left sidenav.

Deployment

Deploying Individual Components

NPMJS Publish

First, export the component using the following command

$ make export-component ENV=prod GUM_COMPS=[component folder name] GUM_E_TYPE=stellar

This will create an ../cnn-rel-discovery-prototyping/dist/export/packed/[component folder name]/ directory on your localhost.

Navigate to that folder and do the normal npm publish steps to publish.

Note: This will publish the component to https://www.npmjs.com/package/@cnnprivate/ as an NPM module with a package prefix of 'gum-'.

OR

Web Bundle

$ make export-component ENV=prod GUM_COMPS=[component folder name] GUM_E_TYPE=web

Deploying the Demo Site

Create a Release

Merge your branch into the develop branch and then:

$ git fetch -p
$ git checkout master
$ git pull origin master
$ git checkout develop
$ git pull origin develop
$ grep version package.json
  "version": "1.18.0",  #Previous version
$ git checkout -b release/1.19.0  #Branch name is new version
$ vim package.json #Bump the version to 1.19.0 in package.json
$ git commit -am '1.19.0' #Commit message with the new version
$ git checkout master
$ git merge --no-ff release/1.19.0
$ git push origin master
$ git tag 1.19.0
$ git push origin 1.19.0
$ git checkout develop
$ git merge --no-ff master
$ git push origin develop
$ git branch -d release/1.19.0

(Note: Version numbers above are examples)

Linting and Testing

Lint

You can run eslint locally using the following command:

$ make lint

To automagically fix lint issues, you can run the following command:

$ make fix-lint-[problem|suggestion|layout|directive]

... where problem, suggestion, or layout will trigger one of lint's predefined Fix Types.

Test

Testing is done via Jest

You can run jest locally using the following command:

$ make test

Contributors

The GUM/e Bears.