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.
locations api in node from www.geonames.org
npm install geode
you will need an account ~ its free #####Signup
//include
var geo = new geode('username', {language: 'en', country : 'US'})
geo.search({name :'Riverside'}, function(err, results){
console.log([err, results])
})
Heres a simple Express App throwing up an api
####Demo
The express code is just
var api = new Geode('username', {country: "US", language: 'en'});
app.get('/:collection.:format', function(req, res){
if(req.params.collection && req.params.format){
api[req.params.collection](req.query, function(err, collection){
res[req.params.format]({status : 200, results : collection});
});
}else{
res.send('404');
}
})
Make sure to install the development dependecies npm install --dev
and then run.
USER=yourusername npm test
FAQs
wrapper for www.geonames.org api
The npm package geode receives a total of 4 weekly downloads. As such, geode popularity was classified as not popular.
We found that geode 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.
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.