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.
activity-router
Advanced tools
application router that supports multiple activities.
activity-router handles routing in your application if you want to have 'layers' or activities
, similar to how activities work in android applications.
activities look like this:
{
name: 'namedActivity',
values: {key: value} // flat key: String(value) map.
}
and are displayed in the hash like this:
https://mySite.com/#/namedActivity#/anotherActivity/value
activity-router uses route-tree under the covers.
Set up a router by passing in your routes just like route-tree:
var activityRouter = require('activity-router');
var router = activitiyRouter({
routeName: {
_url: '/routeurl/{routeValue}/{routeValue}'
}
})
// initialise
router.init();
add an activity.
remove an activity
replace an activity at index
with a new activity
replace the top activity with a new activity
remove the top activity
remove all activities except the first, and replace it with a new activity.
initialise activity-router from the hash in the URL.
activity will raise events when an activity is added/changed/removed
Emitted when a new activity is added
Emitted an existing activity is updated
Emitted an existing activity is replaced
Emitted an existing activity is removed
FAQs
application router that supports multiple activities.
The npm package activity-router receives a total of 2 weekly downloads. As such, activity-router popularity was classified as not popular.
We found that activity-router 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.