Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

deep-storage

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deep-storage - npm Package Compare versions

Comparing version 0.0.2 to 0.1.0

lib/index.d.ts

13

package.json
{
"name": "deep-storage",
"version": "0.0.2",
"version": "0.1.0",
"description": "Simple observable state management for reactive applications",

@@ -9,5 +9,4 @@ "main": "lib/index.js",

"@types/jest": "^20.0.2",
"@types/react": "^15.0.38",
"@types/react-dom": "^15.5.1",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"typescript": "^2.4.1",

@@ -19,8 +18,6 @@ "webpack": "^3.3.0",

"test": "jest",
"build": "tsc"
"build": "rimraf lib && tsc"
},
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
"dependencies": {},
"types": "lib/index.d.ts"
}

@@ -16,3 +16,3 @@ Deep Storage provides observable state for reactive applications in JavaScript.

See an [implementation of TodoMVC that uses Deep Storage](https://github.com/deep-storage/deep-storage/tree/master/examples/react-todomvc).
See an [implementation of TodoMVC that uses Deep Storage](https://github.com/deep-storage/examples/tree/master/react-todomvc).

@@ -33,3 +33,3 @@ ## Installing

import {deep} from 'deep-storage/react';
import {deep} from 'deep-storage-react';

@@ -36,0 +36,0 @@ class TimerView extends React.Component {

@@ -1,2 +0,2 @@

type StateUpdateCallback = <DeepState>(path: Path, newState: DeepState, oldState: DeepState) => void;
export type StateUpdateCallback = <DeepState>(path: Path, newState: DeepState, oldState: DeepState) => void;

@@ -3,0 +3,0 @@ export interface DeepSubscriptions {

@@ -8,3 +8,4 @@ {

"target": "es5",
"jsx": "react"
"jsx": "react",
"declaration": true
},

@@ -11,0 +12,0 @@ "include": [

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc