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.
gen-flow-files
Advanced tools
[![npm version](https://img.shields.io/npm/v/gen-flow-files.svg)](https://www.npmjs.com/package/gen-flow-files) [![npm downloads](https://img.shields.io/npm/dt/gen-flow-files.svg)](https://www.npmjs.com/package/gen-flow-files)
This is a script which finds .js
files with @flow annotation, extract flow definitions and save to specific folder.
As example, <inputDir>/example.js
// @flow
extract function foo(arg1: number, arg2: string): string {
// some code here
}
will be transformed to <outputDir>/example.js.flow
:
// @flow
declare extract function foo(arg1: number, arg2: string): string;
Install it with yarn:
yarn add gen-flow-files
Or with npm:
npm i gen-flow-files --save
scripts": {
...
"flow": "flow",
"build:flow": "gen-flow-files src --out-dir dist",
...
},
transfrom all .js files from src
to .js.flow files and save them at dist
.
npx gen-flow-files <inputDir> --out-dir <outputDir>
transfrom all .js files from <inputDir>
to .js.flow files and save them at <outputDir>
.
FAQs
[![npm version](https://img.shields.io/npm/v/gen-flow-files.svg)](https://www.npmjs.com/package/gen-flow-files) [![npm downloads](https://img.shields.io/npm/dt/gen-flow-files.svg)](https://www.npmjs.com/package/gen-flow-files)
The npm package gen-flow-files receives a total of 897 weekly downloads. As such, gen-flow-files popularity was classified as not popular.
We found that gen-flow-files 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.