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.
electron-vue-screen-capture
Advanced tools
[![NPM version](https://img.shields.io/npm/v/electron-vue-screen-capture.svg?sanitize=true)](https://www.npmjs.com/package/electron-vue-screen-capture) [![Downloads](https://img.shields.io/npm/dm/electron-vue-screen-capture.svg)](http://badge.fury.io/js/
screen capture base on electron & vue
// install
npm install electron-vue-screen-capture -S
// config in vue.config.js
pluginOptions: {
electronBuilder: {
builderOptions: {
extraResources:[{
from: 'node_modules/electron-vue-screen-capture/dist_electron/bundled/',
to: './screen-capture'
}]
}
}
}
// use
import { init, start, close, targetWin } from 'electron-vue-screen-capture/src/main/modules/screenCapture.js'
// initial render process
init(win) // your BrowserWindow
// after clicked a btn,show capture window
start(type) // type 'minimum' will hide the targetWin
// after capture finished/cancaled
ipcMain.on('getCaptureData', (e, data) => {
// base64 for image, if capture was canceled, return false
if (typeof data === 'string') targetWin.send('getCaptureData', data);
// after finish deal with image, close capture's window manualy
close('hide');
});
ipcRenderer.on('screenCaptureAuthFailed', () => {
// mac ScreenCapture promission failed
// do something in your BrowserWindow
})
// close capture manualy
close(type)
// type 'refresh' will exit capture's windows and restart
// type 'hide' will hide capture's windows
// otherwise force destory capture's windows
npm i
npm run serve
FAQs
[![NPM version](https://img.shields.io/npm/v/electron-vue-screen-capture.svg?sanitize=true)](https://www.npmjs.com/package/electron-vue-screen-capture) [![Downloads](https://img.shields.io/npm/dm/electron-vue-screen-capture.svg)](http://badge.fury.io/js/
The npm package electron-vue-screen-capture receives a total of 2 weekly downloads. As such, electron-vue-screen-capture popularity was classified as not popular.
We found that electron-vue-screen-capture 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.