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-mysql

v1.0.1

Published

Verdaccio MySQL authentication plugin

Downloads

5

Readme

MySQL Authentication plugin for Verdaccio

This plugin allows you to use a MySQL database as the store for your user data. This is especially useful if you already one and you want to use it for Verdaccio as well.

Install the plugin

1. Get the package with NPM

> npm install -g verdaccio-mysql

Current release version is v1.0.0

2. Add the plugin in your Verdaccio configuration

In your config.yaml file, look for the auth section. Add the following part right after, replacing the string YOUR_[...] with your values.

connection is a mysql.Connection object, have a look there if you need more options.

auth:
    mysql:
        connection:
            host: "YOUR_SERVER_IP"
            port: 3306
            user: "YOUR_MYSQL_USER"
            password: "YOUR_MYSQL_PASSWORD"
            database: "YOUR_DATABASE"
        queries:
            auth_user: 'SELECT QUERY'
            add_user: 'INSERT QUERY'
            update_user: 'UPDATE QUERY'

3. Specify custom queries to match your database schema.

Similarly as prepared queries, and according to mysql documentation, the parameters for each query must be declared in the query with ? as placeholders.

auth_user: Authentication query

This is the query that will be ran for each authentication tentative.

This query has two parameters in this exact order:

  1. The username provided by the user
  2. The password given

If the authentication is successful, the query must return one row with two columns:

  • username: Username of the user.
  • usergroups: comma-separated list of all user's groups.

If not successful, the query must return an empty recordset.

add_user: New user query

This query allows users to create a new record in the MySQL database.

This query has two parameters in this exact order:

  1. The username for the new user
  2. The password given

Declare add_user as an empty string to forbid anyone to create a new user in the database from Verdaccio or the npm CLI.

update_user: Update user password

This query allows users to change their password with Verdaccio.

This query has three parameters in this exact order:

  1. The new password for the user
  2. The username
  3. The original password

Declare update_user as an empty string to forbid anyone to update their password from Verdaccio or the npm CLI.

See an example of the configuration

Have a look inside the example folder to find an example of the configuration on a simple server:

  • mysql-database.sql contains queries to setup a really simple database with 3 tables: users, groups and user_group
  • mysql-config.yaml describes the configuration to put into config.yaml to work with the schema described in the SQL file.

Development / Building

This plugin is a regular TypeScript project.

Get the sources

$ git clone https://github.com/bchanudet/verdaccio-mysql.git
$ npm install 

Build the plugin and link it globally

For plugins, Verdaccio only looks for packages installed in its directory, or globally installed.

$ npm link

This command wil build verdaccio-mysql, and add a symbolic link to the new version in the global repository of npm. This way it can be used with your local version of Verdaccio.

Found a bug?

Create a new issue, I'll do my best to answer and fix the problem!