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

talenttale-common

v1.0.13

Published

This repo contains common code needed by TalentTale projects

Downloads

26

Readme

common

This repo contains common code needed by TalentTale projects

usage

In order to use this package you need to:

  • create ~/.npmrc file in ~ directory with the following 2 lines: //npm.pkg.github.com/:_authToken=<<<PUT_GITHUB_TOKEN_HERE>>> @talenttale:registry=https://npm.pkg.github.com/
  • the GITHUB_TOKEN you need to generate it from your github developer settings, check the package read option, generate the token & put it in ~/.npmrc
  • once you have that you will be able to use this package by adding it as a dependency in your project either by running yarn add talenttale-common or adding @tallenttale/common: ^1.0.0 in your package.json in dependencies

release

In order to be able to see the changes you've made on this repo you will need to create a PR with the changes. Once it's approved & merged a github action will automatically bump the package.json version, publish it to the private npm registry on github, create a new tag on github & pushe the new package.json in a new commit (meaning your local changes will be behind the HEAD once the github action will finish)

local test

You won't want to wait for the PR to be merged in order to use/test it locally All you need to do is:

  • run yarn build and yarn link on this repository
  • go to the project you want to use it & run yarn link talenttale-common - this command creates a symlink in the node_modules with talenttale-common to this local repo
  • if you want to remove the link & use the version from registry just run yarn unlink talenttale-common & yarn install to install it from the registry