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

@code-engine/cli

v1.0.2

Published

build tool | code generator | static site builder

Downloads

12

Readme

CodeEngine CLI

Cross-Platform Compatibility Build Status

Coverage Status Dependencies

npm License Buy us a tree

This is the command-line interface for CodeEngine. It exports the CodeEngineCLI class, which runs CodeEngine as instructed by the command-line arguments and environment variables.

NOTE: This is an internal library that is only intended to be used by CodeEngine. Using it outside of CodeEngine is discouraged. Use the code-engine npm package instead.

CodeEngineCLI class

This is the programmatic interface to the CodeEngine CLI.

import CodeEngineCLI from "@code-engine/cli";
import manifest from "./package.json";

// Create a new CodeEngineCLI instance
let cli = new CodeEngineCLI({ manifest });

// Run it with some command-line arguments
await cli.main(["--debug", "my-generator"]);

CodeEngineCLI constructor

The constructor accepts a Config object.

import CodeEngineCLI from "@code-engine/cli";

// Create a new CodeEngineCLI instance with a custom config
let cli = new CodeEngine({
  manifest: {
    name: "my-custom-cli",
    version: "1.23.456",
    description: "My custom CLI description",
  },
  process: {
    ...process,
    stdout: new WriteStream(),
    stderr: new WriteStream(),
  }
});

|Config setting |Required |Type |Default |Description |----------------|---------|--------|-----------------|--------------------------------------------------- |manifest |yes |object |none |Information about your CLI, such as its name, version number, and description. You can just set this to the contents of your package.json file. |process |no |Process object |process (Node.js global) |A custom Process object to use instead of the Node.js global process object. This allows you to completely control all inputs and outputs.

CodeEngineCLI.log(message)

Writes a message to the stdout stream.

  • message: The string to write to stdout
import CodeEngineCLI from "@code-engine/cli";
import manifest from "./package.json";

let cli = new CodeEngineCLI({ manifest });

cli.log("Hello, world");

CodeEngineCLI.error(message)

Writes a message to the stderr stream.

  • message: The string to write to stderr
import CodeEngineCLI from "@code-engine/cli";
import manifest from "./package.json";

let cli = new CodeEngineCLI({ manifest });

cli.error("Something went wrong");

CodeEngineCLI.crash(error)

Immediately terminates the CLI with the given error.

  • error: An Error object

NOTE: This method calls process.exit() internally. By default this will terminate the entire Node.js process. You can override this behavior by providing your own process object in the constructor and implementing the exit() method however you choose.

import CodeEngineCLI from "@code-engine/cli";
import manifest from "./package.json";

let cli = new CodeEngineCLI({ manifest });

cli.crash(new SyntaxError("Something went wrong"));

CodeEngineCLI.awaitExit()

Waits for the CLI to exit. This function returns a Promise that only resolves when the "exit" event is emitted.

NOTE: This method calls process.on("exit") internally. By default this will wait for the Node.js process to exit. You can override this behavior by providing your own process object in the constructor and implementing the on() method however you choose.

import CodeEngineCLI from "@code-engine/cli";
import manifest from "./package.json";

let cli = new CodeEngineCLI({ manifest });

await cli.awaitExit();

Contributing

Contributions, enhancements, and bug-fixes are welcome! Open an issue on GitHub and submit a pull request.

Building

To build the project locally on your computer:

  1. Clone this repo git clone https://github.com/CodeEngineOrg/code-engine-cli.git

  2. Install dependencies npm install

  3. Build the code npm run build

  4. Run the tests npm test

License

@code-engine/cli is 100% free and open-source, under the MIT license. Use it however you want.

This package is Treeware. If you use it in production, then we ask that you buy the world a tree to thank us for our work. By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.

Big Thanks To

Thanks to these awesome companies for their support of Open Source developers ❤

Travis CI SauceLabs Coveralls