@api-core/create
v0.0.2
Published
CLI scaffolding tool for API-CORE projects
Readme
@api-core/create
Official project scaffolding CLI initializer for API-CORE.
Quick Start
Initialize a new API-CORE API testing project with a single command:
npm init @api-coreOr pass the project name directly:
npx @api-core/create my-api-testsWhat it does
- Prompts for the project name.
- Scaffolds a lightweight Playwright Test API project.
- Automatically installs dependencies (with
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1). - Includes ready-to-run API contract definitions, registry, fixture, and tests.
After generation:
cd my-api-tests
npm testLibrary Installation Note
@api-core is the npm organization/scope, not an installable package.
- For new project scaffolding: run
npm init @api-core. - For direct library usage in existing projects:
npm install @api-core/testnpm install @api-core/clientnpm install @api-core/verifynpm install @api-core/fetchnpm install @api-core/axios
