
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
This is a Node.js REST api wrapper for LogMeUp Server (http://logmeup.com).
npm install logmeup
To create a log file to start logging to, you must create a LogMeUp collection/app pair.
If you're developing an app named 'Slick Server' and you worked for the company 'Crab Shack', you might name your app slickserver and your collection crabshack.
var Logmeup = require('logmeup');
var logger = Logmeup.createLogger({host: "mylogmeupserver.com", port: 7070, collection: "crabshack", app: "slickserver"});
These methods are asynchronous.
//log some JSON
logger.log({name: "JP", company: "Gitpilot"});
//log a string
logger.log("This is a really bad error!");
//optionally: inspect the servers response
logger.log("Bad error", function(error, responseText){
console.log("The server said: " + responseText);
if (err != null) {
console.log("There was an error: " + err.message());
}
});
You can create a file named logmeup.json in the base directory of your application or in the config/ folder of your app.
The configuration file should look like this:
{
"host": "yourlogmeupserver.com",
"port": 7070,
"collection": "gitpilotllc",
"app": "server"
}
//will autoload logmeup.json
//this way you can put this at the top of all your modules in your app without having to recreate the logger each time
var logger = require('logmeup').default;
logger.log("yay!!!");
MIT License. See LICENSE for complete details.
FAQs
Node.js library to integrate with the LogMeUp server. http://logmeup.com
The npm package logmeup receives a total of 0 weekly downloads. As such, logmeup popularity was classified as not popular.
We found that logmeup 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.