create-quickback
v0.1.0
Published
Scaffold a Quickback project — npx quickback-start [template] [name]
Downloads
174
Maintainers
Readme
quickback-start
The one-command entry point for Quickback:
npx quickback-start # interactive — prompts for template + name
npx quickback-start blank # config only, no features
npx quickback-start todos my-app # working CRUD example, no promptsThis is a thin launcher that delegates to @quickback-dev/cli start. The CLI
dependency is unpinned, so every fresh npx run picks up the latest published
CLI — this package only needs a release if the shim itself changes.
Publishing
Publish under both names so npx quickback-start and npm create quickback
work (npm create X resolves to the create-X package):
npm publish --access public
npm pkg set name=create-quickback
npm publish --access public
npm pkg set name=quickback-start # restore canonical nameThe bin field uses the single-string form, so the executable name follows the
package name automatically under both identities.
