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.
#bigwheel ##class: bigwheel~bigwheel Members
###new bigwheel~bigwheel(settingsFunc) When instantiating bigwheel you must pass in a setup function.
In this function you may do any preparation that must be done for your application such as creating a global Canvas element or something else.
The setup function must either return a settings object for bigwheel or this function must receive a callback which you will call with the settings object. Furthermore you can pass back a promise from this settings function which will receive the settings object.
The following documents what can be passed in the settings object:
{
///// REQUIRED /////
// routes defines all the routes for your website it can also define a
// 404 section which will be opened if the route is incorrect
routes: {
'/': someSection,
'/someOther': someOtherSection,
'404': sectionFourOhFour
},
///// OPTIONAL /////
initSection: preSection, // this could be a section that is run always
// before routes are even evaluated. This is
// usefulf for site preloaders or landing pages
// such as age verification (something the user
// must see)
autoResize: true, // by default this value is true. When this value is
// true a resize listener is added to the window
// whenever the window changes size it's width and
// height is passed to all instantiated sections
postHash: '#!', // this string is appended before the route.
// by default it's value is '#!'
duplicate: true, // by default this value is true. When this value is
// true, you will be able to go to the same route
// multiple times in a row, useful for routes
// that contain wild cards
}
Params
function
- This settings function will be used to
initialize bigwheel.Scope: inner class of bigwheel
###bigwheel.init()
init must be called to start the framework. This was done to allow for
a developer to have full control of when bigwheel starts doing it's thing.
###bigwheel.go(to) go can be called to go to another section.
Params
String
- This is the route you want to go to.Example
framework.go( '/landing' );
###bigwheel.resize(w, h) Resize can be called at any time. The values passed in for width and height will be passed to the currently instantiated sections.
If autoResize
was not passed in or it was true then resize
will automatically be called when the window of the browser
resizes.
Params
Number
- width value you'd like to pass to the sectionsNumber
- height value you'd like to pass to the sectionsFAQs
bigwheel is an unopinionated, minimalist frontend framework that manages application state
The npm package bigwheel receives a total of 31 weekly downloads. As such, bigwheel popularity was classified as not popular.
We found that bigwheel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.