Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
redux-webextension
Advanced tools
redux-webextension
makes a Redux store in the background page of a WebExtension based browser extension available to other components of the extension.
$ npm install react-webextension --save
In your extension background page, create a Redux store as usual and then call exposeStore
to make it available to other parts of the extension:
import { createStore } from "redux";
import { exposeStore } from "redux-webextension";
import { reducer } from "./yourReducers.js";
const store = createStore(reducer);
exposeStore(store);
From your content scripts, extension popups, etc., call connectStore
to return a Promise
that resolves to an object conforming to the Redux API that can be used directly or with bindings such as react-redux
:
import { connectStore } from "redux-webextension";
connectStore().then(function(store) {
store.subscribe(() => {
console.log("New state:", store.getState());
});
store.dispatch({ action: "DO_SOMETHING" });
});
exposeStore
can be passed a third argument, a callback which is fired when the port disconnects. This can be used to perform any necessary state cleanup. e.g.
import { createStore } from "redux";
import { exposeStore } from "redux-webextension";
import { reducer } from "./yourReducers.js";
function cleanupState(port, store) {
store.dispatch({ action: "CLEANUP_STATE", port_name: port.name });
}
const store = createStore(reducer);
exposeStore(store, null, cleanupState);
See the example extension in the example
directory. To run it, ensure you have Firefox Developer edition installed, and then:
$ cd example
$ npm install
$ npm run-script start
Gabriel Gironda, HeavySet – contact@heavyset.io
Distributed under the MIT license. See LICENSE
for more information.
https://github.com/heavyset/react-webextension
git checkout -b feature/fooBar
)git commit -am 'Add some fooBar'
)git push origin feature/fooBar
)FAQs
Connect to a Redux store in a WebExtension background page
The npm package redux-webextension receives a total of 2 weekly downloads. As such, redux-webextension popularity was classified as not popular.
We found that redux-webextension demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.