Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
plague-api
Advanced tools
v1.05 - fix encoding problem
v1.04 - register method
Set Plague Api Options
options: Use this to set your latitude & longitude.
var plague = require('plague-api').set({
latitude: -99.999999999999,
longitude: -99.999999999999
});
Register to get UserId and Token
email: Your user email.
password: Your user password.
name: Your name.
callback: callback function.
plague.register('sample@domain.com', 'mypassword', 'My Name', function(user){
if(user.error){
console.log(user.error);
return;
}
console.log(user);
});
Login to get UserId and Token
email: Your plague user email.
password: Your plague user password.
callback: callback function.
plague.login('sample@domain.com', 'mypassword', function(user){
if(user.error){
console.log(user.error);
return;
}
console.log(user);
});
Return all user posts
callback: callback function.
plague.login('sample@domain.com', 'mypassword', function(user){
if(user.error){
console.log(user.error);
return;
}
//List all user posts
plague.getPosts(function(res){
var posts = res.posts;
posts.forEach(function(post) {
console.log(post);
})
});
});
Return Nearby Plagues
callback: callback function.
plague.login('sample@domain.com', 'mypassword', function(user){
if(user.error){
console.log(user.error);
return;
}
plague.getInfectionsNearby(function(res){
console.log(res);
});
});
Send a text only post to Plague API
text: Text of the post.
callback: callback function.
plague.login('sample@domain.com', 'mypassword', function(user){
if(user.error){
console.log(user.error);
return;
}
plague.postText('Hello Plague', function(res){
console.log(res);
});
});
Send a post with a Media Link
mediaLink: Url of the image should be around 600x600 pixels.
mediaLinkPreview: Url of the image should be around 300x300 pixels.
callback: callback function.
plague.login('sample@domain.com', 'mypassword', function(user){
if(user.error){
console.log(user.error);
return;
}
plague.postLink(
'http://domain.com/imageFull.png',
'http://domain.com/imageSmall.png',
'Hello! =)',function(res){
console.log(res);
});
});
Delete a post using postId
postId: This is the id returned from getPosts.
callback: callback function.
plague.login('sample@domain.com', 'mypassword', function(user){
if(user.error){
console.log(user.error);
return;
}
plague.deletePost(123456,function(res){
console.log(res);
});
});
Delete all user posts
callback: callback function.
plague.login('sample@domain.com', 'mypassword', function(user){
if(user.error){
console.log(user.error);
return;
}
plague.deleteAllPosts(function(res){
console.log(res);
});
});
FAQs
Plague Social Platform NodeJS API
The npm package plague-api receives a total of 9 weekly downloads. As such, plague-api popularity was classified as not popular.
We found that plague-api 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
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.