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

@erickmerchant/framework

Package Overview
Dependencies
Maintainers
1
Versions
244
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@erickmerchant/framework - npm Package Compare versions

Comparing version 9.0.3 to 9.1.0

4

dist/main.js

@@ -40,6 +40,4 @@ "use strict";

function next(callback) {
process.nextTick(function () {
callback({ target: target, dispatch: dispatch });
});
process.nextTick(callback, { target: target, dispatch: dispatch });
}
};

@@ -32,6 +32,4 @@ module.exports = function ({target, store, component, diff, raf}) {

function next (callback) {
process.nextTick(function () {
callback({target, dispatch})
})
process.nextTick(callback, {target, dispatch})
}
}
{
"name": "@erickmerchant/framework",
"version": "9.0.3",
"version": "9.1.0",
"description": "A simple data down, actions up framework.",

@@ -28,3 +28,3 @@ "main": "dist/main.js",

"nyc": "^10.0.0",
"standard": "^9.0.0",
"standard": "^10.0.0",
"tape": "^4.6.0"

@@ -31,0 +31,0 @@ },

# @erickmerchant/framework
This scoped package is my personal framework.
This scoped package is my personal framework. I wrote it to understand how modern javascript frameworks do things. It's meant to be used with browserify.
I wrote it to understand how modern javascript frameworks do things. It's greatly inspired by React and Redux, etc, obviously. Also hyperx, which demonstrated that you can use tagged template strings instead of JSX, was a huge inspiration.
I also wrote it because I don't really like any of the options out there. I wouldn't necessarily use it for anything serious, but intend to use it for any personal stuff I do.
It is meant to be used with browserify.
## An Example

@@ -13,0 +6,0 @@

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