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

releaseflow-cli

v1.2.7

Published

Quickly build all your dependencies for release.

Downloads

36

Readme

Releaseflow

A Node.js command-line application for quickly creating all release files.

Why will it help me?

After a release build is ready for deployment, there are a lot of tasks to be completed. This program helps organize all those steps, and has various advantages over other deployment applications:

  • Automatically:
    • Generates documentation, including information from the project's changelog
    • Builds the executable
    • Packs source code into a ZIP or TAR
  • Compatible with Node.js and Maven, and many other project formats coming soon
    • Or, you can define your own XML or JSON file that can be used!
  • Installable via npm

Where do I get it?

The application is installable via npm:
npm install -g releaseflow-cli

Enough talk. Let's see it in action!

example

Usage

Arguments

-V, --version        output the version number  
-l, --changelog      build changelog  
-d, --docs           build documentation template  
-e, --exec           build executable  
-c, --config <path>  set config path  
-s, --source         package source code  
-h, --help           output usage information  

rfconfig.json

All the configuration for your project is stored here, formatted as a JSON object. If the file does not exist, Releaseflow will auto-generate a template for you in your project's directory.

Properties

"package": path to your project's descriptor (i.e. Node.js's `package.json`)  

"markdown": whether to use markdown in documentation or not  

"docs": information used when generating documentation  

	"title": title of the document  
	"dist": output folder path  
	"template": create sections here you would like to appear in the documentation  

"changelog": information used when generating the project's formatted changelog

	"path": input file  
	"header_format": the format of each entry's header (can be multi-line by using '\n') 
	"replace_links": replace issue/pull request identifiers with actual links (i.e. `#1` is replaced by `[#1](https://www.github.com/user/repo/issues/1)`)  
	"dist": output folder path  
	"ignore": array of lines to ignore, such as a sign-off  

"source": information used when compressing the source code  

	"dir": array of glob strings (i.e. `*.txt`, `src/*.*`) of paths to files and folders that should be included  
	"dist": output folder path  
	"compression": array containing compression formats, either `zip` or `tar` (Note: tar's are also gzipped); there will be a file exported for each format specified  

"exec": command used to build the project  

Interpolaters

There are a set of "interpolaters" that may be used in different parts of the config to include data automatically.

Project File

Any property present in the project's descriptor/package file (i.e. package.json, pom.xml) may be interpolated by using the format of: %%(property)%. Examples:
%%license%, %%artifactId%, %%version%, %%name%

Special Identifiers

For the title and template sections in docs, as well as the dist properties, project information may be interpolated by using the following identifiers:
%%changelog%: the project's generated, formatted changelog
%%toc%: table of contents

General Regular Expressions

For the header_format property only, you can supply the following identifiers:
%n: matches an integer
%s: matches a string

For the dist properties only, you can supply the following identifiers:
%e: default file extension (i.e. 'changelog-1.0.0.%e' would be 'changelog-1.0.0.md' if markdown is enabled)

For example, the header_format for (#23)[4/2/2018-11:12 1.2.0 beta] would be the following string:
(#%n)[%n/%n/%n-%n:%n %%version% %s]

How can I help?

View the Contributing Guidelines for more information. The Releaseflow project is open to anyone and any code!

Slack

Request to join the Sergix team to recieve notifications on updates, Travis CI build status, and more!

Releaseflow v1.2.7
1.2.7
This project and its source are held under the GNU General Public License, located in the LICENSE file in the project's directory.
(c) 2018