https://github.com/igorkamyshev/withease
A set of libraries and recipes to make frontend development easier thanks to Effector
https://github.com/igorkamyshev/withease
effector i18next reactivity web-api
Last synced: 5 months ago
JSON representation
A set of libraries and recipes to make frontend development easier thanks to Effector
- Host: GitHub
- URL: https://github.com/igorkamyshev/withease
- Owner: igorkamyshev
- License: mit
- Created: 2022-12-11T10:48:28.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-08-09T09:35:24.000Z (6 months ago)
- Last Synced: 2025-08-09T11:35:27.098Z (6 months ago)
- Topics: effector, i18next, reactivity, web-api
- Language: TypeScript
- Homepage: https://withease.effector.dev
- Size: 1.16 MB
- Stars: 39
- Watchers: 3
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# With Ease
A set of libraries and recipes to make frontend development easier thanks to Effector.
## Maintains
### Getting started
- clone repo
- install deps via `pnpm install`
- make changes
- make sure that your changes is passing checks:
- run tests via `pnpm run -r test:run`
- try to build it via `pnpm run -r build`
- format code via `pnpm run format:check`
- fill in changes via `pnpm changeset`
- open a PR
- enjoy 🎉
### Release workflow
Releases of With Ease are automated by [changesets](https://github.com/changesets/changesets) and GitHub Actions. Your only duty is creating changeset for every PR, it is controlled by [Changes-action](./.github/workflows/changes.yml).
After merging PR to master-branch, [Version-action](./.github/workflows/version.yml) will update special PR with the next release. To publish this release, just merge special PR and wait, [Release-action](./.github/workflows/release.yml) will publish packages.
### Repository management
#### New package creation
Copy-paste `packages/web-api` directory, rename it to the package name. Then, update `package.json`, `README.md` and `vite.config.js` files. Then, delete `CHANGELOG.md` file and any other files that are not needed in the new package.
Fancy generator will be added in the future.