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

@kevinscheeren/strom

v1.0.0

Published

Git Extension CLI to bootstrap GitFlow.

Downloads

2

Readme

@kevinscheeren/strom

Introduction

A CLI distributed through npm to automatically execute GitFlow workflows.

GitFlow

What is GitFlow?

Giflow is an alternative Git branching model that involves the use of feature branches and multiple primary branches. It was first published and made popular by Vincent Driessen at nvie. Compared to trunk-based development, Giflow has numerous, longer-lived branches and larger commits. Under this model, developers create a feature branch and delay merging it to the main trunk branch until the feature is complete. These long-lived feature branches require more collaboration to merge and have a higher risk of deviating from the trunk branch. They can also introduce conflicting updates.

Gitflow can be used for projects that have a scheduled release cycle and for the DevOps best practice of continuous delivery. This workflow doesn’t add any new concepts or commands beyond what’s required for the Feature Branch Workflow. Instead, it assigns very specific roles to different branches and defines how and when they should interact. In addition to feature branches, it uses individual branches for preparing, maintaining, and recording releases. Of course, you also get to leverage all the benefits of the Feature Branch Workflow: pull requests, isolated experiments, and more efficient collaboration. (Source / read more)

How to use this CLI?

(No Windows Support - GitBash & WSL should work, but are not officially supported) strom can also be replaced with stm.

# init a project
strom init

# features
strom feature start [feature-name]
strom feature finish [feature-name]

# hotfixes
strom hotfix start [hotfix-name]
strom hotfix finish [hotfix-name]

# releases (prefix version code with v manually)
strom release start v[release-number]
strom release finish v[release-number]

Installation

Requirements

Set Up

Official Releases:

You can use it locally for specific NodeJS Projects

npm install --save-dev @kevinscheeren/strom

or install it globally

npm install -g @kevinscheeren/strom

Beta Versions / Pre-Release Versions:

For beta versions clone the develop branch, cd into it and execute the following command.

npm install && npm run build && npm link