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

verdaccio-static-token

v1.0.1

Published

Quick and dirty plugin for Verdaccio npm registry to use auth tokens, without run the token command

Downloads

258

Readme

verdaccio-static-token

This plugin for Verdaccio npm registry let you to use custom authentication tokens with verdaccio.

DISCALIMER: this is a quick and dirty plugin to archive my needs. You MUST understand how it works because it could be a potential security issue for your registry. The settings of this plugin are not encripted in the verdaccio/config.yaml, so the server must have an access policy.

If you want/need encripted strings in config file send a PR or wait for Verdaccio 4.0.

Installation

npm install verdaccio
npm install verdaccio-static-token

How it works

This plugins is composed of two components:

  • middleware: it modify the authorization header injecting a valid auth token encripted in aes192 using the Verdaccio secret
  • authorization: it will approve the used tokens and any additional users login, eventually skipping the next auth-plugin configured

Usage

There are some type of usage:

| Type | Description | |------|-------------| | middleware-only | This inject a valid auth token in the authorization header and it is up to the auth plugins configure to manage the login | authorization-only | With this setting you can define an "allowList" of users that will skip all the auth plugins and will automatically return a login ok | middleware+authorization | You can comine these two types giving the access only to a defined set of tokens, so users will continue to use others auth plugins configured

middleware-only

middlewares:
  static-token:
    - token: mySecureToken
      user: systemUser
      password: systemPassword
    - token: ABCD1234
      user: uncle
      password: tom

If a request have the header Authorization: Bearer mySecureToken, it will be replace at runtime with a token that act as systemUser. All the auth plugins configured in Verdacco will receive the user and password you have setted.

Whenever you configure the token field value use long and random strings.

NB: if the user you have set require the 2FA, the authentication will fail. So it is up to you to configure a static application-user.

authorization-only

auth:
  static-token:
    - doo
    - foo
    - bar
  ldap:
    ...
  other-auth-plugin:
    ...

This configuration will skip the all the auth plugins that comes after the static-token plugin. In this example the users doo, foo and bar can access without a valid password.

Of course use this feature with caution!

middleware+authorization

auth:
  static-token:
  ldap:
    ...
middlewares:
  static-token:
    - token: mySecureToken
    - token: ABCD1234

The best setting of this plugin is to combine the two possible uses, in this way it gives access to the Verdaccio registry only to a list of tokens.

The tokens will not act as other users and the static-token auth plugin will authorize only the tokens, so all the others users must login as usual.

NB: if the static-token auth plugin isn't the first of the list, the token will be rejected! As before, the token value must long and random!

Where I have to set the token in my npm client?

To set the token in your npm client you have to add it to your user config.

This command will append a valid setting:

# view where the file is located
npm config get userconfig

# append a login access
echo '//localhost:4873/:_authToken="mySecureToken"' >> `npm config get userconfig`

The pattern of the string appended is: //<url of the registry>/:_authToken="<static-token>". You can find more info here.

License

Copyright Manuel Spigolon, Licensed under MIT.