RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models, and a data-layer design promoting unified consumption through Stores and Services.
npx rdvue [command]
The help menu can be accessed with the command:
npx rdvue --help
The current version of rdvue can be retrieved with the command:
npx rdvue -v|--version|version
Usage:
npx rdvue <action>
Actions:
create-project - Scaffold a new rdvue project
add - Add a feature to a project
plugin - Inject a utility to extend project functionality
upgrade - Specify the rdvue template version for a project
Options:
--help | -h - Show help information
The RDVue CLI is the product of RealDecoy's Frontend Practice group. Contributions are welcome! You can help us by reporting or fixing bugs and giving us feedback on new/existing features.
npm install
npm link
npm run test
- create a
<module-name>.test.ts
file in the/test
folder - using
chai
assertion syntax, describe your unit test cases - visit the oclif testing documentation to see more details