sangte
Sangte is a fancy React state management library.
File Explorer
- test.yml
- vite.svg
- react.svg
- Counter.tsx
- GlobalState.tsx
- Hydrate.tsx
- Inherit.tsx
- Initialize.tsx
- MemoizedSelector.tsx
- MemoryLeakTester.tsx
- MultiProviders.tsx
- Selector.tsx
- Todos.tsx
- VisibleToggle.tsx
- App.css
- App.tsx
- index.css
- main.tsx
- vite-env.d.ts
- .gitignore
- index.html
- package.json
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
- yarn.lock
- SangteProvider.test.tsx
- index.ts
- SangteProvider.tsx
- useResetAllSangte.test.tsx
- useResetSangte.test.ts
- useSangte.test.ts
- useSangteActions.test.ts
- useSangteCallback.test.ts
- useSangteStore.test.ts
- useSangteValue.test.ts
- useSetSangte.test.ts
- index.ts
- useResetAllSangte.ts
- useResetSangte.ts
- useSangte.ts
- useSangteActions.ts
- useSangteCallback.ts
- useSangteStore.ts
- useSangteValue.ts
- useSetSangte.ts
- sangte.test.ts
- SangteManager.test.ts
- shallowEqual.test.ts
- index.ts
- sangte.ts
- SangteInitializer.ts
- SangteManager.ts
- shallowEqual.ts
- index.ts
- setupTest.ts
- .gitignore
- .prettierrc
- babel.config.js
- index.html
- jest.config.ts
- LICENSE.md
- package.json
- README-ko.md
- README.md
- rollup.config.js
- tsconfig.json
- yarn.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
interface
View Details ▼
interface
Manage interfaces.
Accessed in configuration mode.
interface vlan {{1}}
Configure a VLAN:
{{no shutdown|shutdown}}
Set an interface to be active or inactive (this is run inside the interface command):
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
yarn
View Details ▼
yarn
JavaScript and Node.js package manager alternative.
yarn global add {{module_name}}
Install a module globally:
yarn install
Install all dependencies referenced in the `package.json` file (the `install` is optional):
yarn add {{module_name}}@{{version}}
Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):
