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

onwards

v0.0.7

Published

<p align="center"> <img alt='magoon-face' src='https://user-images.githubusercontent.com/14088342/230068165-5e013e79-2ff8-4fb5-a1f0-fd5b13e028a9.png' width='250'/> <h1 align="center">ONWARDS</h1> <p align="center">πŸ‘ Super simple shareable portforwa

Downloads

24

Readme

β˜€οΈ What's this?

Onwards is a command line tool for managing port-forwards in Kubernetes environments. It can start and stop port-forwards and display logs from each port-forward. It automatically retries a port-forward if it disconnects. Onwards uses a config file which will make it super simple to port-forward to necessary services for the entire team. πŸ‘

πŸ“‹ Prerequisites

To get started with Onwards, you need to have the following installed:

  • Node.js (version 12 or later)
  • Yarn (optional, can also use NPM)

πŸš€ Getting Started

To use Onwards, you can install it globally using Yarn or NPM:

npm install -g onwards

Or if you prefer using Yarn:

yarn global add onwards

Alternatively, you can run it without installing by using npx:

npx onwards

πŸ‘‰ Pro tip: Make sure your Kubernetes cluster is up and running before using Onwards!

πŸ’» Local Development

To develop on Onwards locally, follow these steps:

  1. Clone the repository: git clone https://github.com/username/onwards.git πŸ™
  2. Install the dependencies: npm install or yarn πŸš€
  3. Start Onwards: npm start or yarn start 🌟

πŸš€ This will start Onwards with the default onwards.json.

βš™οΈ Configuration

Onwards uses a configuration file called onwards.json to define the port-forwarding services. Here is an example configuration file:

{
  "services": [
    {
      "name": "service",
      "command": "kubectl port-forward another-service 5000:5000"
    },
    {
      "name": "another service",
      "command": "kubectl port-forward another-service 5001:5000"
    }
  ]
}

πŸ‘‰ Pro tip: If you're not sure what kubectl port-forward does, you can learn more about it in the Kubernetes documentation.

Each service object in the services array has a name and a command property. The name property is a descriptive name for the service, and the command property is the command to start the port-forward.

πŸ’ͺ Contributing

If you encounter any issues or have suggestions for how to improve Onwards, please feel free to open an issue or a pull request on our GitHub repository. We welcome contributions of all kinds! 🎁

πŸ“„ License

This project is licensed under the MIT License.

πŸ‘‹ Thanks for using Onwards! If you have any questions or feedback, feel free to open an issue or reach out to me on Twitter.