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

balrog-auth

v0.1.2

Published

Balrog is a lightweight authorization library for Node apps that can protect your routes with a single username & password combination.

Downloads

4

Readme

Balrog-Auth

Balrog Green

CircleCI npm version

Balrog-auth is a lightweight authorization library for Express >= 4 written by Pixie Labs that can protect your routes with password.

Balrog is an alternative to basic authentication that provides some advantages:

  • Uses a password hash instead of a plaintext password.
  • Provides a lightweight HTML form instead of inconsistent basic authentication.
  • Better support for password managers (which often don't support basic authentication dialog boxes).

Installation

Add the package to your package.json:

$ npm i -S balrog-auth

Run the installer to generate an initializer:

$ npx balrog-initialize
Enter New Password: secret-passord
Confirm New Password: secret-password
"Balrog configured!"
$

Regenerating a password hash

If you need to create a new password, modify the object in balrog_config.js. You can generate a new hash with the provided npx command:

$ npx balrog-generateHash
New password: secret-password
Confirm New Password: secret-password

$2a$04$8U/Yun3MZ5..FuT9yUJNK.F2uUuHagtvsD.CNc5lSZegzq9eJjwqu

Copy this hash into balrog_config.js

Restricting access in index.js

// Import balrog-auth.
const { balrog, authenticate } = require("balrog-auth");
const config = require("./balrog_config.js");

// Add and configure express-session and body-parser.
// These are balrog-auth dependencies.
const session = require("express-session");
app.use(
  session({ resave: false, saveUninitialized: false, secret: "supersecret" })
);

if (app.get("env") == "production") {
  session.cookie.secure = true;
}

const bodyParser = require("body-parser");
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
 
// Configure Balrog to use hashed password.
app.use(balrog(config));

// Any GET requests made to /admin are protected by Balrog.
app.get("/admin", authenticate, (req, res) =>
  res.sendFile("admin.html", { root: __dirname + "/public" })
);

Logout button

To add a logout button, you can add a button making a POST request to /balrog/logout. After logout, the user will be redirected to the root of the app.

For example, in your view:

<form method="post" action="/balrog/logout">
  <input type="submit" value="Logout" />
</form>

Contributing

Running the tests

Tests are part of the dummy Express app within the dummy-app folder:

$ cd dummy-app
$ npm i
$ npm start

In a new terminal:

$ npm test

Before contributing, please read the code of conduct.

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
  • Fork the project.
  • Start a feature/bugfix branch.
  • Commit and push until you are happy with your contribution.
  • Please try not to mess with the package.json, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so we can cherry-pick around it.

TODO

  • Test coverage
  • Expire sessions
  • Hide user input during npx balrog-initialize