create-vyriy
v0.8.9
Published
Create Vyriy projects from reusable starter contracts.
Readme
create-vyriy
Part of Vyriy - a calm architecture toolkit for TypeScript, React, SSR, SSG, APIs, and cloud-ready apps.
Full documentation: https://vyriy.dev/docs/create-vyriy/
Unscoped npm create vyriy entry point for creating Vyriy projects.
CLI
Run with npm:
npm create vyriy app
npm create vyriy app -- --dry-run
npm create vyriy . -- --overwrite
npm create vyriy app -- --no-installInstall globally:
npm install --global create-vyriyRun the installed command:
create-vyriy app
create-vyriy app --dry-run
create-vyriy . --skip-existing
create-vyriy --help
create-vyriy --versionAPI
Install as a project dependency:
npm install create-vyriyUse the creator from code:
import { create } from 'create-vyriy';
const code = await create({
directory: 'app',
dryRun: false,
overwrite: false,
skipExisting: false,
install: true,
verify: true,
});create-vyriy delegates to @vyriy/create and returns the same process-style exit code.
