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.
A simple trie based router built for minimalism and speed. Works best with React and Browserify.
$ npm i --save wayfarer
var wayfarer = require('wayfarer');
var router = wayfarer();
// Register routes.
router
.default('/404')
.route('/', function() {console.log('/')})
.route('/home', function() {console.log('/home')})
.route('/404', function() {console.log('/404')})
.route('/:user', function() {console.log('/user')});
// Match a route.
router.match('/tobi')
// => '/user'
Register a new path. Partial paths are supported through the /: operator. Wayfarer uses a trie to match routes, so the order in which routes are registered does not matter.
router.route('/', function() {console.log('do stuff')});
router.route('/:user', function() {console.log('do user stuff')});
Sets a default path to match. This is particularly useful for setting 404 pages.
router.default('/404');
router.route('/404', function() {console.log('sunglasses not found')});
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'
FAQs
Composable trie based router
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.