KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#claude-code
#codex
#cli
#developer-tools
#react
#windows
swc-jotai
★ 104
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
citrus
:
(distributed) vector database
start
:
Production-grade scaffolding CLI for modern React — integrate ecosystem tools in one command.
KC-Scraper
:
A powerful open-source proxy scraper
ubik_accounting
:
Double entry accounting app in Net 9
JetMVI-Template
:
Simple demo to use jetpack compose with MVI architecture with clean way.
// 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
swc-jotai
?
Download (.md)
# swc-jotai SWC plugins for [Jotai](https://github.com/pmndrs/jotai). [Try it out using CodeSandbox](https://codesandbox.io/s/next-js-with-custom-swc-plugins-ygiuzm). ## Install ```sh npm install --save-dev @swc-jotai/debug-label @swc-jotai/react-refresh ``` The plugins can be used by themselves as well. ## Usage You can add the plugins to `.swcrc`: Then update your `.swcrc` file like below: ```json { "jsc": { "experimental": { "plugins": [ ["@swc-jotai/debug-label", {}], ["@swc-jotai/react-refresh", {}] ] } } } ``` You can use the plugins with [experimental SWC plugins feature](https://nextjs.org/docs/advanced-features/compiler#swc-plugins-experimental) in Next.js. ```js module.exports = { experimental: { swcPlugins: [ ["@swc-jotai/debug-label", {}], ["@swc-jotai/react-refresh", {}], ], }, }; ``` ### Custom atom names You can enable the plugins for your custom atoms. You can supply them to the plugins like below: ```js module.exports = { experimental: { swcPlugins: [ ["@swc-jotai/debug-label", { atomNames: ["customAtom"] }], ["@swc-jotai/react-refresh", { atomNames: ["customAtom"] }], ], }, }; ```