Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Modular trie based based router. Works best with Browserify.
$ npm install wayfarer
const wayfarer = require('wayfarer')
const router = wayfarer({ default: '/404' })
router.on('/', () => console.log('/'))
router.on('/404', () => console.log('/404'))
router.on('/:user', () => console.log('/user'))
router.match('/tobi')
// => '/user'
Initialize wayfarer with options. default
allows setting a default path
to match if none other match. Ignores query strings.
const router = wayfarer({ default: '/404' })
Register a new path. Wayfarer uses a trie to match routes, so the order in which routes are registered does not matter.
router.on('/', () => console.log('do stuff'))
router.on('/:user', () => console.log('do user stuff'))
Partial paths are supported through the /:
operator, and the callback
provides a param object. With a route like /:user
if you navigated to
/somename
, you'd get a param object like this: { user: 'somename' }
.
router.on('/:user', (uri, param) => console.log('my name is ', param.user))
Nested routers are supported by passing in .match()
as the callback to
another router.
const main = wayfarer()
const sub = wayfarer()
main.on('/foo', sub.match.bind(sub))
sub.on('/foo/bar'), (uri) => console.log(uri))
main.match('/foo/bar')
// '/foo/bar'
Match a path against the saved paths in the router. If a match is found the registered callback will be executed.
router.match('/tobi')
// => 'do user stuff'
window.location.hash
matchingFAQs
Composable trie based router
The npm package wayfarer receives a total of 1,236 weekly downloads. As such, wayfarer popularity was classified as popular.
We found that wayfarer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 30 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.