chouf
v1.0.10
Published
Chouf is an environment to develop, test, and share your React components faster.
Downloads
18
Readme
Chouf
Chouf is an environment to develop, test, and share your React components faster.
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;