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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cybernixvn/footer-protect

v1.0.10

Published

Small React Footer component

Downloads

19

Readme

@cybernix/footer-protect

Small React footer component packaged for npm.

Contents

  • index.js — CommonJS export: { Footer } React component.

Usage

If published to the registry, install:

npm install @cybernix/footer-protect

Then import in a CommonJS setup:

const React = require("react");
const { Footer } = require("@cybernix/footer-protect");

// use in render
React.createElement(Footer);

Or in ES modules (if you build/transform the package):

import React from "react";
import { Footer } from "@cybernix/footer-protect";

function App() {
  return (
    <div>
      {/* ... */}
      <Footer />
    </div>
  );
}

Publish

Public NPM (or scoped public)

Make sure the package private is false and you are logged in to npm.

npm login
npm publish --access=public

Private NPM (restricted)

npm login
npm publish --access=restricted

Note: private scoped packages require a paid plan on npm for org-level private packages.

GitHub Packages (scope)

  1. Create a repo on GitHub and push this package.
  2. Use an .npmrc with a token for users to install from GitHub Packages:
@cybernix:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=YOUR_TOKEN
  1. Then publish with npm publish.

Notes

  • This is a minimal CommonJS package. If you want TypeScript, ESM build, or a transpile step, I can add tsconfig, rollup/vite build, and types.
  • If you want me to commit these files and push to main, say so and I will create a git commit.

Granular Access Token (recommended settings)

If you publish under a scoped org (for example @cybernixvn), create a Granular Access Token on npmjs.com with the following recommended settings:

  • Token name: Cybernix-package (or another unique name)
  • Description: (optional) e.g. "Publish token for footer-protect CI"
  • Allowed IP ranges: (optional) provide CIDR ranges if you want to lock usage to specific IPs
  • Packages and scopes: select the scope @cybernixvn (or the specific package @cybernixvn/footer-protect) so the token only applies to that scope
  • Permissions: enable packages:read and packages:publish (read + write for the selected scope)
  • Organizations: select cybernixvn if prompted
  • Bypass 2FA: enable this option if you plan to publish from CI or automation (required in some org setups)
  • Expiration: choose an expiration date (e.g. 90 days) and rotate tokens regularly

After generating the token, copy it immediately (it will be shown only once) and store it securely. Do NOT commit the token to source control.

Example local usage (PowerShell session only):

$env:NPM_TOKEN = 'PASTE_YOUR_NEW_TOKEN_HERE'
$env:NODE_AUTH_TOKEN = $env:NPM_TOKEN
cd footer-protect
npm version patch
npm publish --access public

For CI/CD, store the token in repository secrets (e.g. NPM_TOKEN) and expose it as NODE_AUTH_TOKEN during the publish step.

If you do not control the org scope @cybernixvn, you can publish as a non-scoped package by changing the name field in package.json (for example to "cybernix-footer-protect").