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.
@roots/bud-framework
Advanced tools
This is the core framework leveraged by @roots/bud. You may find it useful in other projects. It's kind of a bootstrap-y laravel/adonis style container-based framework.
yarn add @roots/bud-framework
Attach things to it.
import {framework} from '@roots/bud-framework'
framework.apply('method', () =>
console.log('attach a method to it'),
)
const instance = new framework()
instance.method() // => 'attach a method to it'
Log stuff.
instance.logger.info({data: 100}, 'Logged message')
Create containers for storing, accessing and manipulating stuff.
instance.bind('things', {
some: {
thing: 100,
},
})
instance.things.get('some.thing')
// => 100
instance.things.set('some.thang', 200)
instance.things.get('some')
// => {some: {thing: 100, thang: 200}}
It definitely does other helpful stuff. As this is a lower-level utility it is largely undocumented, at the moment..
Contributions are welcome from everyone.
We have contributing guidelines to help you get started.
Help support our open-source development efforts by becoming a patron.
Keep track of development and community news.
FAQs
A friendly build tool to help manage your project assets.
The npm package @roots/bud-framework receives a total of 9,949 weekly downloads. As such, @roots/bud-framework popularity was classified as popular.
We found that @roots/bud-framework demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.