KO
|
EN
gitlite — search
Search
#python
#javascript
#chatgpt
#css3
#open-source
#typescript
#react
#css
#html
#java
#openai
#deep-learning
luciex
★ 20
Open GitHub ↗
Simpler state management
Download README (.md)
Explore Similar Repositories
Gli-appunti-di-Lucia
:
All sharable valuable material appeared / mentioned in my videos. 所有视频中出现过 / 提到的有价值(学习)材料。
elysia-lucia
:
Plugin for Elysia authenticaion using Lucia
Elysia_Lucia_Example
:
Elysia + Lucia-auth exmaple with Next.js, Expo.js, Turborepo
tss-app
:
TanStack Start starter with shadcn/ui, tRPC, Drizzle and Lucia-Auth.
slide
:
SvelteKit + Lucia + i18n using inlang + Drizzle ORM + tailwindcss using skeleton
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
luciex
?
Download (.md)
<h1 align="center"> <p align="center">Luciex</p> </h1> ## Introduction Luciex is a simplistic state management library. - **Simple To Start** > Luciex has a simple interface making it as easy as possible to get right in. ## Installation ``` $ npm install luciex # Or with yarn $ yarn add luciex ``` ## Try It Out You can create a simple store (or as we call it, an `atom`) for a counter app in only a couple lines. ```typescript import { Atom } from 'luciex'; const counterAtom = new Atom(0); const increase = (count: number) => count + 1; const decrease = (count: number) => count - 1; await counterAtom.dispatch(increase); await counterAtom.dispatch(decrease); ```