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.
js-yaml-import
Advanced tools
Allows import files in YAML.
This plugin requires an LTS Node version (v10.0.0+).
Using npm:
$ npm i js-yaml js-yaml-import -D
Using yarn:
$ yarn add js-yaml js-yaml-import -D
# ./src/foo.yaml
Media:
Anime: foo
# ./src/bar.yaml
'@import':
- baz.yaml
Media:
VideoGames: bar
# ./src/baz.yaml
Media:
FilmAdaptation: baz
# ./src/data.yaml
'@import':
- foo.yaml
- bar.yaml
Media:
Webcomic: aaa
Manga: bbb
const path = require('path');
const Yaml = require('js-yaml-import');
const yaml = new Yaml(path.join(__dirname, 'src'));
const yamlFile = yaml.read(path.join(__dirname, './src/data.yaml'));
console.log('data =', yamlFile);
// data = {
// Media: {
// Anime: 'foo',
// FilmAdaptation: 'baz',
// VideoGames: 'bar',
// Webcomic: 'aaa',
// Manga: 'bbb'
// }
// }
searchPaths
Type: string | string[]
FAQs
Allows import files in YAML.
The npm package js-yaml-import receives a total of 4 weekly downloads. As such, js-yaml-import popularity was classified as not popular.
We found that js-yaml-import 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.