
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Seamlessly scaffold content-driven web projects with the power of Abi.js. Whether you're building blazing-fast blogs, portfolios, or scalable applications, this CLI has you covered.
To create a brand new project, you can use the following command:
npm create abi@latest
Run the following command using your preferred package manager:
With NPM:
npm create abi@latest [destination] [runtime] [...options]
With Yarn:
yarn create abi [destination] [runtime] [...options]
With PNPM:
pnpm create abi [destination] [runtime] [...options]
With Bun:
bun create abi [destination] [runtime] [...options]
Customize the command with the following arguments:
| Name | Type | Default value | Description |
|---|---|---|---|
| destination | String | ./abi-app | Directory of the project. |
| runtime | "node" or "deno" or "bun" | node | JavaScript/TypeScript runtime to use. |
Enhance your project setup with these additional flags:
| Name | Shortcut | Description |
|---|---|---|
--help | -h | Display all available options. |
--force / --no-force | -f / --no-f | Overwrite target directory, if needed. |
--install / --no-install | -i / --no-i | Automatically install dependencies. |
--git / --no-git | Use Git to save changes. | |
--yes | -y | Accept all default configurations. |
--no | -n | Decline all default configurations. |
--dry-run | Simulate the setup process without executing. |
The easiest way to explore Abi.js on your machine is by running the following command:
npm create abi@latest
You can combine multiple flags to set up your project exactly as needed:
npm create abi my-abi-project --yes --no-git --no-ci
For developers looking to programmatically access the CLI functionality:
Basic Usage
Run the CLI programmatically without arguments:
import createAbi from 'create-abi';
createAbi();
With Custom Arguments
Specify arguments directly:
import { run } from 'create-abi';
run(["./abi-app", "node"]);
Definition Types
Define the structure of the CLI options and arguments:
export type Definition = {
destination: string;
runtime?: "node" | "deno" | "bun";
force?: boolean;
install?: boolean;
git?: boolean;
yes?: boolean;
no?: boolean;
dryRun?: boolean;
};
Default Settings
Here are the default configurations:
export const defaultDefinition = {
destination: "./abi-app",
runtime: "node",
force: undefined,
install: undefined,
git: undefined,
yes: undefined,
no: undefined,
dryRun: undefined
} as const;
FAQs
Interactive CLI for create Abi.js projects.
The npm package create-abi receives a total of 0 weekly downloads. As such, create-abi popularity was classified as not popular.
We found that create-abi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.