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

pjr

v0.35.0

Published

📽 Projector: The CLI for bootstrapping projects

Downloads

94

Readme

📽 Projector: The CLI for bootstrapping projects

npm version

Table of Contents

About

projector is a tool that was created as an effort to reduce duplicated work in bootstrapping projects. It aims to reduce friction, time and effort for developer teams in the following use cases:

  • Discovering and consuming content from an engineering playbook, such as the Code-With Engineering Playbook.
  • Creating templatized work items within Agile providers (e.g. Azure DevOps, Jira, GitHub). This can be used to create shared "checklists" of stories/features/tasks that should exist within every engagement and add them right to the developer team's backlog
  • Creating a sprint schedule for the project within the Agile provider. Rather than clicking around Azure DevOps every week to create a new sprint, this is a one command execution that will generate as many sprints as required of the desired length and start date.
  • Opening commonly used links in your playbook. Could be helpful when onboarding new engineers to a playbook.
  • ...and more to come! We hope to receive feedback and ideas from engineers on what tasks they do most frequently to manage their projects and how we can automate them through the command line.

Commands

See the commands doc for usage and description of each command.

Getting Started

Projector runs on Node 14+. To install the pjr CLI tool, run:

npm i pjr -g

To see how to accomplish the tasks above using pjr commands, follow the how-to documentation.

Contribution Guidelines

See our contribution guidelines doc for more info on how you can contribute to projector.

Developer Guidelines

See our local development documentation for things like installing, linting, building, testing and more.

Application Telemetry

Projector uses Application Insights to better understand and fix errors that come up in the CLI. To opt out of this, set the environment variable TELEMETRY_ENABLED=0. This can be done manually in whatever shell you're using or in the .projector.env file that is picked up by Projector.

Maintainers

For any questions about the project, please reach out to any one of the project maintainers:

License

MIT

FAQ

Here are some common problems and solutions to issues in projector.

Running pjr the first time fails

When running pjr for the first time, if you encounter an error like the following:

$ pjr
internal/modules/cjs/loader.js:638
    throw err;
    ^
Error: Cannot find module 'fs/promises'

Make sure you are running Node version 14+.

$ node --version
v14.x