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.
@specla/autoloader
Advanced tools
Autoload modules
and json
files with ease. This packages constructs an object
that reflects your folder structure and requires the files within the
specified path.
npm install --save @specla/autoloader
const path = require('path')
const Autoloader = require('specla-autoloader')
const modules = new Autoloader(path.resolve('./modules'))
An example of the path ./modules
could look like this.
┬ modules
├── some-file.js
├── data.json
├─┬ sub-modules
├── other-file.js
This will create the following js object when the path is autoloaded.
const modules = {
'some-file': require('./modules/some-file.js'),
data: require('./modules/data.json'),
'sub-modules': {
'other-file': require('./modules/sub-modules/other-file.js')
}
}
const modules = new Autoloader(__dirname, {
include: ['js', 'json'], // specifies which file types to include
ignore: [
'node_modules', // ignore folders
'some-file.js' // ignore specific file
]
})
FAQs
Autoload modules and json files in Node.js
The npm package @specla/autoloader receives a total of 2 weekly downloads. As such, @specla/autoloader popularity was classified as not popular.
We found that @specla/autoloader 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.