
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.
A versatile command-line tool designed to streamline the creation of web development projects by generating structured templates for backend and frontend. Supports dynamic CRUD generation, page structures, and theme customization.

A versatile command-line tool designed to streamline the creation of web development projects with Core Framework
CORE CLI is an extension of the Core Framework ecosystem, designed to accelerate development workflows by providing a unified command-line interface for initializing and scaffolding backend and frontend projects. It comes pre-configured with standardized templates that follow the Core Framework's architectural patterns and best practices.
CORE CLI is built with:
CORE CLI is designed to work seamlessly across platforms:
To install CORE CLI globally on your system, run:
npm install -g corep-cli
This makes the CLI available system-wide through the following aliases:
corecore-clicrCORE CLI uses a .core-config file to manage project settings. Generate it with:
core-cli --init
# OR
core-cli -i
{
"nameProject": "my-backend-project",
"version": "1.0.0",
"platform": "backend",
"connectionConfig": "unit-connection"
}
{
"nameProject": "my-frontend-project",
"version": "1.0.0",
"platform": "frontend"
}
| Field | Description | Values |
|---|---|---|
nameProject | Project name used in various operations | Any string |
version | Current project version | Semantic versioning |
platform | Target platform | backend or frontend |
connectionConfig | (Backend only) Database connection type | global-connection or unit-connection |
core-cli [command] [options]
CORE CLI allows you to quickly scaffold new projects based on the Core Framework templates:
core-cli new -n my-app
core-cli new -p backend -n my-api
This will:
.core-config fileAfter project creation, follow the suggested steps:
cd my-app
npm install
npm run dev
For existing projects, you can generate new components with standardized structures:
# Create a CRUD component
core-cli -c crud -d src/core -n product
# Create a basic page
core-cli -c page -d src/pages -n dashboard
# Create a form page
core-cli -c single-forms -d src/forms -n userProfile
# Create a page with theme support
core-cli -c page-tool -d src/pages -n products
| Command | Description |
|---|---|
new | Create a new project by cloning a Core template repository |
create or -c | Create component from template in existing project |
--init or -i | Initialize .core-config file in current directory |
new command| Option | Alias | Description | Required |
|---|---|---|---|
--platform | -p | Target platform (backend or frontend) | No (defaults to frontend) |
--name | -n | Project name | Yes |
create command| Option | Alias | Description | Required |
|---|---|---|---|
--platform | -p | Target platform (backend or frontend) | No* |
--create | -c | Template type to create | Yes |
--directory | -d | Target directory for template | Yes |
--name | -n | Name for the template | Yes |
* Not required if the .core-config file was previously created with cr -i command
| Template | Description |
|---|---|
crud | Complete CRUD model with advanced features |
| Template | Description |
|---|---|
page | Basic page structure following project conventions |
single-forms | Pages for managing single forms |
page-tool | Enhanced implementation with modern layout, CRUD support, and theme selector |
This project is licensed under the "Commons Clause". For more details, refer to the LICENSE.md file in the project repository.
CORE CLI - Streamlining development in the Core Framework ecosystem
Made with ❤️ by Core Factory
FAQs
A versatile command-line tool designed to streamline the creation of web development projects by generating structured templates for backend and frontend. Supports dynamic CRUD generation, page structures, and theme customization.
We found that corep-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
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.