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

@dreipol/dreiup

v2.1.0

Published

Command line interface to kick-start dreipol projects

Downloads

20

Readme

dreiup-cli

NPM version NPM downloads CircleCI Maintainability Test Coverage

Requirements

  1. node >=10.0
  2. npm >=6

Installation

Install this package globally on your machine

npm i @dreipol/dreiup -g

Usage

All the available cli features can be listed using the following command

dreiup --help

Technologies

Core Modules

commander A library to create CLI subcommands and handles option parsing

Inquirer Handles user props. This way we can minimize the amount of options required for a command And give the user a simpler experience.

Testing Modules

Mocha Test runner module to execute our tests

Chai Assertion library that works with any testrunner

Commands

create <projectName>

dreiup create <projectName> will create a new project. It will generate a sub folder in the current directory with the given project name and install the template from dreiup-templates from the master branch. In case you need another branch to be used, you can add the option -b <branchName> or --branch <branchName>. Or you can specify a template source directory with -t <path> or --template <path>. This will not fetch any data from the remote repo, but will use the given path as a template source folder and will then install it's content into the projectName subfolder

setup

dreiup setup creates the ~/.dreiup.json file in your home directory storing your private global variables. Your ~/.dreiup.json file will look something like:

{
	"GITHUB_OAUTH_TOKEN": "1d5723BLABLABLA1a9c6c30"
}

Development

To see if everything behaves correctly you can link this repo with npm link. This exposes the dreiup cli command that is then linked directly into this directory instead of the global module installation

Structure

Module Structure

    - src
        - commands
        - cli
    - test
  • src core functionality used to "boot" the cli, load commands and config and so on. Logic shared between the commands can also be placed here.
  • src/commands contains all available commands
  • src/util helper functions that can be shared across several files
  • src/index.js Logic that is dedicated to the CLI boot is placed here. Like loading files & config and so on
  • test location to add the unittest for the files within src

Command Structure

    - commands
        - <COMMAND_NAME>
            - command.js
            - index.spec.js
            - prompt.js
            - index.js
  • commands Folder containing all available commands

  • <COMMAND_NAME> Folder containing a single command. This name should correspond to the name available in the cli

  • command.js The command initialisation. This file is autoloaded to expose the command and its description

  • index.spec.js Containing all unittests for the command logic within index.js

  • prompt.js Prompts spawned by the command

  • index.js Contains the main logic of the command. All logic is here to make the command as testable as possible

Create a new Command

  1. Create a new folder with the command name. In this case we will use foo

  2. Create the command file index.command.js which will register a new command. This file should export a function.

    import program from 'commander';
    import foo from './index.js';
         
    export default function() {
        program
            .command('foo <name>')
            .alias('f')
            .description('Example foo command')
            .action(async (name) => {
                await foo(name)
            });
    };
  3. Create the spec file index.spec.js. Within this file, the logic from index.js will be tested

  4. Add the index.js. Within this file all the logic should be placed so the index.command.js only has to call one function from this file, pass all parameters and that's it.

Use inquirer within a command

In order to let the user make more decisions, we simply wrap the main logic from index.js into another function.

Example before

export default function foo(config, name) {
    console.log(`Foo bar ${name}`);
};

Example with inquirer

import inquirer from 'inquirer';

function foo(config, name, gender) {
    console.log(`Foo bar ${gender} ${name}`);
}

export default function (config, name) {
    return inquirer
        .prompt([
            {
                type: 'list',
                name: 'gender',
                message: 'Select gender',
                choices: ['male', 'female']
            }
        ])
        .then(({gender}) => {
            return foo(config, name, gender);
        });
};