Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vidundergunder/storyless
When Storybook is too much. UI DevTools and utilities for fast and enjoyable development.
https://github.com/vidundergunder/storyless
bun cli devtool devtools dx figma frontend nextjs open-source react storybook svg sync turborepo typescript ui
Last synced: 22 days ago
JSON representation
When Storybook is too much. UI DevTools and utilities for fast and enjoyable development.
- Host: GitHub
- URL: https://github.com/vidundergunder/storyless
- Owner: VidunderGunder
- Created: 2023-11-10T15:28:55.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T17:00:43.000Z (about 2 months ago)
- Last Synced: 2024-10-10T07:36:35.334Z (27 days ago)
- Topics: bun, cli, devtool, devtools, dx, figma, frontend, nextjs, open-source, react, storybook, svg, sync, turborepo, typescript, ui
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@storyless/react
- Size: 12 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# π Storyless
Storyless is a UI DevTool that lets you build and test components in isolation inside of your app.
For when design system powerhouses like [Storybook](https://storybook.com/) is just too much.
Direct interoperability with your app and main build tools means hard-to-integrate features like authentication, fetching, state management, themes, etc. will just work when you need them.
**[π LIVE DEMO](https://storyless.vercel.app/)**
![Storyless](packages/react-storyless/button.png)
## π Get Started
### [π Storyless (React)](https://github.com/VidunderGunder/storyless/tree/main/packages/react-storyless#readme)
Complimentary tools, on the house:
[𦩠Feasy βΒ Feature Toogles](https://github.com/VidunderGunder/storyless/tree/main/apps/feasy#readme)
[π¦ JSON Switcheroo βΒ CLI Tool](https://github.com/VidunderGunder/storyless/tree/main/packages/json-switcheroo#readme)
[π₯· Figma to SVG β CLI Tool](https://github.com/VidunderGunder/storyless/tree/main/packages/figma-to-svg#readme)## π Get Started (for Contributors)
_Note that all installs may require restarting the terminal β and in some cases a complete reboot β to work properly_
Clone this repo to your development environment
Install [node](https://nodejs.org/en/) `>=20.0.0 <21.0.0`\*
> \*Alternatively, you can use [Node Version Manager](https://github.com/nvm-sh/nvm#installing-and-updating) with the included `.nvmrc` file
>
> ```sh
> nvm use
> ```Install [bun](https://bun.sh/) `>=1.0.13`
Install dependencies:
```sh
bun i
```Start developing:
```sh
bun dev
```Unless you're a veteran, it is _highly recommended_ to read through the [**π€― Problems During Development?**](https://github.com/VidunderGunder/storyless#-problems-during-development) section before starting development.
## What's inside?
This Turborepo includes the following packages & apps:
### Apps and Packages
- π **apps**
- π **docs** - _Storyless docs (Next.js)_
- 𦩠**feasy** - _Feasy Feature Toggling Service (Next.js)_
- ~~𦩠**feasy-api** - _Unused backend prototype for Feasy_~~
- β² **nextjs-app-router** - _Next.js app (app router) for testing_
- β² **nextjs-pages-router** - _Next.js app (pages router) for testing_
- π **packages**
- π **react-storyless** - _React (and Next.js) library for Storyless_
- 𦩠**feasy-drizzle** - _Library to do Feasy Database operations_
- π₯· **figma-to-svg** - _CLI tool to convert Figma designs to SVGs_
- π¨ **ui** - _Shared UI components for the monorepo_
- π§ββοΈ **scripts** - _Monorepo scripts_
- π§ββοΈ **tsconfig** - _Reusable TypeScript configurations_
- π§ββοΈ **eslint-config-storyless** - _Reusable ESLint configurations_## π¦ Publish
_Note: You need to be a member of the `@storyless` npm organization to publish packages_
```bash
npm login
bun publish-packages
```## Useful TurboRepo Links
Learn more about the power of Turborepo:
- [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)
- [Caching](https://turbo.build/repo/docs/core-concepts/caching)
- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)
- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)
- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)
- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)## π€― Problems During Development?
Below are ways to solve them.
As of now we only support VSCode running on MacOS, Linux and WSL.
You are free to use anything else, but we can't guarantee that it will work.
Please document your findings if you try something else <3### Generally
Restart your IDE (VSCode) and/or terminal
Restart your computer
### Permission errors when running commands (MacOS/Linux)
Prefix the command with `sudo`, e.g.:
```bash
sudo whatever you were trying to run
```### Pulling changes from the repository
Always check for and install new dependecies when you pull changes from the repository:
```bash
bun i
```### Wrong version of Node
- Check your version with
```bash
node -v
```
- Install the correct version according to `engines` in `package.json`### Wrong version of bun
Check your version with
```bash
bun -v
```Install the correct version according to `engines` in `package.json`
### Using 32-bit version of Node (Windows)
Getting `error Command failed with exit code 3221225477` or something similar?
Check if you're using 32-bit Node.js:
```bash
node -p "process.arch"
```If so, ensure you're running on a 64-bit system, then install the 64-bit version instead.
### Divergent git branches
```bash
git config pull.rebase false
```### Ports already in use
Kill the processes running on relevant ports:
```bash
bun run killports
```### Weird TypeScript or ESLint errors
First, make sure you're running the workspace version of TypeScript and ESLint:
Open up any TypeScript file in the project and press...
-
β + Shift + P on Mac
-
Ctrl + Shift + P on Windows
Then ask VSCode to use the workspace TypeScript version:
```
> TypeScript: Select TypeScript Version
```
Then restart the TypeScript server:
```
> TypeScript: Restart TS server
```
Same for ESLint:
```
> ESLint: Restart ESLint server
```