![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
keep-me-posted
Advanced tools
Execute code on a web page, send yourself a telegram message.
npm install keep-me-posted
Import the keepMePosted
function from 'keep-me-posted'
Available params:
NOTE: The callback function is executed in the webpage scop and not in your application scop, you will be able to access the window object and the DOM but will not be able to access any of you variables. You can pass extra arguments and catch them as arguments in your callback function.
const keepMePosted = require('keep-me-posted');
const URL = "https://github.com";
const settings = {
telegramBotToken: 'my-bot-api-token' // Get it from BotFather
chatId: 123456 // Send a message to your bot, then getUpdates
};
// Returning a String
keepMePosted(URL, () => window.location.href, settings);
// This will return a Promise that will resolve with "https://github.com"
// The bot will send a message "https://github.com"
// Returning an Object
function exec(foo) {
return {
message: 'Hi...',
a: foo.a + 10
};
}
keepMePosted(URL, exec, settings, {a: 1});
// This will return a Promise that will resolve with the object:
// { message: 'Hi...', a: 11 }
// The bot will send a message "Hi..."
// Avoiding a message
keepMePosted(URL, () => {a: 1}, settings);
// This will return a Promise that will resolve with the object:
// { a: 1 }
// The bot will not send a message
FAQs
Keep yourself posted for website updates
The npm package keep-me-posted receives a total of 5 weekly downloads. As such, keep-me-posted popularity was classified as not popular.
We found that keep-me-posted 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.