iamssen / atom-query

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WORKSPACE TEMPLATE

Start web project

# create a workspace directory
npx copy-github-directory workspace my-project
cd my-project

# create an app
npx copy-github-directory web my-app

# add "my-app" to workspaces of package.json

# install
yarn

# start
cd my-app

# start
yarn run start

Start electron project

# create a workspace directory
npx copy-github-directory workspace my-project
cd my-project

# create an app
npx copy-github-directory electron my-app

# add "my-app" to workspaces of package.json

# install
yarn

# directory
cd my-app

# start
yarn run start

Start multi-packages project

# create a workspace directory
npx copy-github-directory workspace my-project
cd my-project

# create an app
npx copy-github-directory packages my-packages

# add "my-packages" to workspaces of package.json

# install
yarn

# start
cd my-packages

# start
yarn run test

About


Languages

Language:TypeScript 95.7%Language:JavaScript 2.2%Language:HTML 1.4%Language:Shell 0.7%