
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@mizuka-wu/ipc-express
Advanced tools
This package enables you to use the electron ipc like an express application without the http overhead.
This library enables you to use the express framework in the mainthread of electron but without the http overhead.
npm i @mizuka-wu/ipc-express
const { ipcMain } = require('electron');
const express = require('express');
const { IpcServer } = require('@mizuka-wu/ipc-express');
const expressApp = express();
const ipc = new IpcServer(ipcMain);
const someMiddleware = (req, res, next) => {
next();
};
expressApp.use(someMiddleware);
expressApp.get('/test/:id', (req, res) => {
res.send({
params: req.params,
query: req.query
});
});
ipc.listen(expressApp);
import { IpcClient } from '@mizuka-wu/ipc-express';
const { ipcRenderer } = window.require('electron');
const ipc = new IpcClient(ipcRenderer);
async componentDidMount() {
const testId = 5;
const { data } = await ipc.get(`/test/${testId}?test=testquery`);
const { params, query } = data;
console.log({ params, query })
}
An example can be found in the example-app
folder.
To start the example-app:
cd example-app
npm run start:main
npm run start:renderer
npm i
Copyright © 2019-Present, René Heinen. All rights reserved.
FAQs
This package enables you to use the electron ipc like an express application without the http overhead.
The npm package @mizuka-wu/ipc-express receives a total of 0 weekly downloads. As such, @mizuka-wu/ipc-express popularity was classified as not popular.
We found that @mizuka-wu/ipc-express demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.