New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

concave

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

concave - npm Package Compare versions

Comparing version

to
0.0.22

dist/index.d.ts

23

package.json
{
"name": "concave",
"version": "0.0.21",
"description": "A Lens-like interface for state management",
"main": "dist/create-lens.js",
"module": "dist/create-lens.mjs",
"types": "dist/create-lens.d.ts",
"version": "0.0.22",
"description": "Lens-like state management (for React)",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/create-lens.d.ts"
],
"react": [
"./dist/react.d.ts"
"./dist/index.d.ts"
]

@@ -20,8 +17,4 @@ }

".": {
"import": "./dist/create-lens.mjs",
"require": "./dist/create-lens.js"
},
"./react": {
"import": "./dist/react.mjs",
"require": "./dist/react.js"
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}

@@ -28,0 +21,0 @@ },

@@ -1,37 +0,31 @@

# 🧐 Concave
<p align="center">
<img src="./image.png" />
</p>
A Lens-like interface for state management in React.
Lens-like state management (for React).
## Overview
# Overview
## Introduction to Lenses for React developers
# Introduction to Lenses for React developers
## Installation
# Installation
## API
# API
### `createLens<S>(initialState: S): Lens<S>`
## `createLens<S>(initialState: S): Lens<S>`
### `Lens<A>`
## `Lens<A>`
A stateless [Proxy](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy) around `A`
#### `Lens<A>.getStore(): Store<A>`
## `Store<A>`
#### `Lens<A>.$key`
## `useCreateLens<A>(initialState: S): Lens<S>`
#### `Store<A>`
# Examples
## Use with React
# Testing
### `useLens<A>(lens: Lens<A>, shouldUpdate? ShouldUpdate<A>): [Value<A>, Update<A>]`
# Performance
### `useCreateLens<A>(initialState: S): Lens<S>`
## Examples
## Testing
## Performance tips
1. Use shouldUpdate.

@@ -43,2 +37,4 @@

<!--
## Example

@@ -95,3 +91,3 @@

```tsx
````tsx
// Profile.tsx

@@ -115,2 +111,6 @@ import { Lens } from "concave";

};
``` -->
```
```