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

frameless

v0.0.6

Published

a tiny framework to write command line programs

Downloads

89

Readme

frameless

introduction

“frameless” is a framework to write command line programs. “frameless” allows you to write command line programs that are easy to read, and fun to write.

thus, “frameless” is two things: (1) a set of decisions focused around how command line programs should work; and (2) a node.js module that demonstrates those decisions

the main design goal behind “frameless” is to allow you to migrate your day-to-day scripts to the command line with minimal effort

“frameless” is designed with hackers in mind so all the internals are deliberately exported. this allows fellow developers to tailor behavior if they disagree with the decisions made by the maintainers of the “frameless” itself, as well as perform necessary customization in style and security

the best way to get a feel for “frameless” is to simply look at an node.js program that uses “frameless”. for example, you can check the usage examples listed in the project’s repository

“frameless” is free software, available under the apache open source license (v2). see the license for more information

basics

default options

command line programs are expected to respond consistently to options such as version, yes, raw, verbose, help, setup. “frameless” will perform all these operations and behave according to the principle of least surprise. you can check which options are reserved by printing frameless.reserved_options, and customize styles by overriding the style methods that correspond to the options

var frameless = require('frameless');

// assuming placement in `bin/` folder
frameless.version = require('../package').version;

frameless.main(function () {
  frameless.silly(frameless.reserved_options);
});

printing to the stdout is achieved with frameless methods named frameless.info, frameless.silly, frameless.err, and frameless.warn which behave as you would expect. a generic callback

prompt

“frameless” will ask for options that are required but were not provided at run time using a prompt

frameless.main('name', function (input) {
  frameless.info('hello ' + input.name);
});

if you run “frameless” without specifying --name alice “frameless” will prompt you for the name.

“frameless” prompt is built on top of the flatiron/prompt module. all the arguments to the main function (except the callback) are assumed to be either a string (i.e. a mandatory option) or an object that represents a flatiron/prompt option object

the confirmation prompt

“cli” will enable an “are you sure?” prompt if deliberately ask for it in your code

frameless.confirm(true);

this check can then be overridden by the end user by using the -y or --yes option

persisting options across different requests

“frameless” enables programs to save and reuse the options specified in a request by exposing the frameless.save function. calling this function with true will make frameless automatically record the options inputed in a dot file located in your home directory

frameless.save(true);

frameless.main('name', 'password', function (opts) {
  frameless.info(frameless.dotfile, 'dotfile');
  frameless.info(frameless.sensitive_options,  'sensitive');
});

special considerations are taken for saving options which are member of an internal array called frameless.sensitive_options. “frameless” will attempt to encrypt options that include any of the substrings listed in this array, using the frameless.cypher_type and frameless.key. “frameless” ships with a default key, but you are encouraged to change it in your program. “frameless” will also attempt to read the ~/.ssh/id_rsa private key and use it as an encryption key whenever possible

“frameless” allows you to select which options should be saved. the default is to save the option once you called the frameless.save method

frameless.save(true);

frameless.main('name',
  { name: 'password', required: true, save: false}, function (opts) {
  frameless.info(frameless.dotfile, 'dotfile');
  frameless.info(frameless.sensitive_options,  'sensitive');
});

router

tbd.

themes

internally “frameless” exposes methods that format output presented to user. please check the source code in the style section for a better understanding of all functions you can customize to your liking (e.g. frameless.PS1)

man pages

publishing your module with npm

tbd.

apps built using frameless

license

copyright 2011 nuno job <nunojob.com> (oO)--',--

licensed under the apache license, version 2.0 (the "license"); you may not use this file except in compliance with the license. you may obtain a copy of the license at

http://www.apache.org/licenses/LICENSE-2.0

unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "as is" basis, without warranties or conditions of any kind, either express or implied. see the license for the specific language governing permissions and limitations under the license.