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

sfco-mk

v0.7.1

Published

'sfco-mk' is a command line utility that aims to simplify the process of 'bootstrapping'/'generating' common web dev. configuration and supporting files.

Downloads

21

Readme

Short Future Co. - MK

Table of Contents

About

sfco-mk is a command line utility that aims to simplify the process of 'bootstrapping'/'generating' common web dev. configuration and supporting files.

As with all open source software, this utility may be used by any interested parties. However, please note that sfco-mk is highly opinionated and, at the time of writing, not configurable.

Installation

As a command line utility, sfco-mk is meant to be installed globally.

npm install -g sfco-mk

Setup

N/A

Usage

sfco-mk exposes the mk command. See the subsections below for additional usage information.

Creating Templates

The primary use of the mk command is to create templates of a given type. The 'default' version of a given template can be created by running the following command.

mk { SUBCOMMAND }
mk readme // Creates a `README.md` file in the current directory.

If a given template has many 'variants' (eg. different versions of the template), then mk may be invoked with a { VARIANT } option. When invoked correctly, the file which matches the specified { SUBCOMMAND } and optional { VARIANT } will be created in the current directory.

mk { SUBCOMMAND } { VARIANT }
mk readme alt // Creates a `README-ALT.md` file in the current directory.

If a value is provided for { VARIANT }, it must match one of the keys within the _manifest.json file for the specified { SUBCOMMAND }. If no value is provided for { VARIANT }, then the default key is used.

Supporting Commands

The following commands may be used to display additional information about sfco-mk. None of the following commands generate templates:

Command | Description --- | --- list | Display a list of templates and template variants.

Documentation

Currently, sfco-mk does not include any external documentation.

For an overview of available commands, please see the templates/ directory, as well as the _manifest.json file within each subdirectory.

For an overview of the project's evolution, please consult the CHANGELOG.