1.0.10 • Published 10 months ago

chouf v1.0.10

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Chouf

Chouf is an environment to develop, test, and share your React components faster.

Chouf BaseWeb

Quick start

mkdir my-project
cd my-project
pnpm init
pnpm add @wesh/chouf react react-dom
mkdir src
echo "export const World = () => <p>Hey</p>;" > src/hello.choufs.tsx
pnpm chouf serve

with yarn

mkdir my-project
cd my-project
yarn init --yes
yarn add @wesh/chouf react react-dom
mkdir src
echo "export const World = () => <p>Hey</p>;" > src/hello.choufs.tsx
yarn chouf serve

with npm

mkdir my-project
cd my-project
npm init --yes
npm install @wesh/chouf react react-dom
mkdir src
echo "export const World = () => <p>Hey</p>;" > src/hello.choufs.tsx
npx chouf serve;