@artkai/create-app
v0.2.4
Published
This README would normally document whatever steps are necessary to get your application up and running.
Downloads
6
Readme
Create Artkai App
Quick Overview
npx @artkai/create-app my-app
cd my-app
npm start
Then open http://localhost:3000/ to see your app.
Get Started Immediately
You don’t need to install or configure tools like webpack or Babel. They are preconfigured and hidden so that you can focus on the code.
Create a project, and you’re good to go.
Creating an App
You’ll need to have Node 16.0.0 or later version on your local development machine (but it’s not required on the server). We recommend using the latest LTS version. You can use nvm (macOS/Linux) or nvm-windows to switch Node versions between different projects.
To create a new app, you may choose one of the following methods:
npx
npx @artkai/create-app my-app
(npx is a package runner tool that comes with npm 5.2+ and higher, see instructions for older npm versions)
npm
npm init @artkai/app my-app
npm init <initializer>
is available in npm 6+
Yarn
yarn create @artkai/app my-app