Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tajo/ladle
🥄 Develop, test and document your React story components faster.
https://github.com/tajo/ladle
components documentation esbuild javascript playground react stories styleguide testing typescript ui vitejs
Last synced: about 9 hours ago
JSON representation
🥄 Develop, test and document your React story components faster.
- Host: GitHub
- URL: https://github.com/tajo/ladle
- Owner: tajo
- License: mit
- Created: 2020-07-14T06:56:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-03T16:35:53.000Z (11 days ago)
- Last Synced: 2025-01-03T16:41:33.566Z (11 days ago)
- Topics: components, documentation, esbuild, javascript, playground, react, stories, styleguide, testing, typescript, ui, vitejs
- Language: TypeScript
- Homepage: https://www.ladle.dev
- Size: 24.6 MB
- Stars: 2,649
- Watchers: 6
- Forks: 94
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- fucking-awesome-vite - Ladle - Tool for developing and testing component stories powered by Vite and React. (Projects Using Vite.js / Open Source)
- awesome-github-repos - tajo/ladle - 🥄 Develop, test and document your React story components faster. (TypeScript)
- awesome-vite - Ladle - Tool for developing and testing component stories powered by Vite and React. (Projects Using Vite.js / Open Source)
- jimsghstars - tajo/ladle - 🥄 Develop, test and document your React story components faster. (TypeScript)
README
![Ladle BaseWeb](https://raw.githubusercontent.com/tajo/ladle/main/packages/website/static/img/ladle-baseweb.png)
Ladle is an environment to develop, test, and share your React components faster.
- [Documentation](https://www.ladle.dev)
- [Demo](https://react-movable.pages.dev)
- [Twitter](https://twitter.com/ladlejs)
- [StackBlitz](https://ladle.dev/new)
- [Discord](https://discord.gg/H6FSHjyW7e)## Quick start
```bash
mkdir my-ladle
cd my-ladle
pnpm init
pnpm add @ladle/react react react-dom
mkdir src
echo "export const World = () =>Hey
;" > src/hello.stories.tsx
pnpm ladle serve
```with yarn
```bash
mkdir my-ladle
cd my-ladle
yarn init --yes
yarn add @ladle/react react react-dom
mkdir src
echo "export const World = () =>Hey
;" > src/hello.stories.tsx
yarn ladle serve
```with npm
```bash
mkdir my-ladle
cd my-ladle
npm init --yes
npm install @ladle/react react react-dom
mkdir src
echo "export const World = () =>Hey
;" > src/hello.stories.tsx
npx ladle serve
```