1.0.2 • Published 3 years ago

create-owl-app v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

create-owl-app

Scaffolding Your First Owl Project

Compatibility Note: Owl requires Node.js version >=12.0.0.

With NPM:

$ npm init owl-app

With Yarn:

$ yarn create owl-app

With PNPM:

$ pnpx create-owl-app

Then follow the prompts!

You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Vite + Vue project, run:

# npm 6.x
npm init owl-app my-vue-app --template vue

# npm 7+, extra double-dash is needed:
npm init owl-app my-vue-app -- --template vue

# yarn
yarn create owl-app my-vue-app --template vue

# pnpm
pnpx create-owl-app my-vue-app --template vue

Currently supported template presets include:

  • vue
  • vue-ts