Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@code-engine/cli
Advanced tools
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
classThis 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
constructorThe 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.
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.
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
objectNOTE: This method calls
process.exit()
internally. By default this will terminate the entire Node.js process. You can override this behavior by providing your ownprocess
object in the constructor and implementing theexit()
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 ownprocess
object in the constructor and implementing theon()
method however you choose.
import CodeEngineCLI from "@code-engine/cli";
import manifest from "./package.json";
let cli = new CodeEngineCLI({ manifest });
await cli.awaitExit();
Contributions, enhancements, and bug-fixes are welcome! Open an issue on GitHub and submit a pull request.
To build the project locally on your computer:
Clone this repo
git clone https://github.com/CodeEngineOrg/code-engine-cli.git
Install dependencies
npm install
Build the code
npm run build
Run the tests
npm test
@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.
Thanks to these awesome companies for their support of Open Source developers ❤
FAQs
build tool | code generator | static site builder
We found that @code-engine/cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.