
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
LogMeUp is logger software. The difference between LogMeUp and other logging solutions is that with LogMeUp you can view your log files real-time in the web browser all over the world.
This is a Node.js REST api wrapper for LogMeUp Server (http://logmeup.com). Vist http://logmeup.com to learn about setting it up.
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.
Creates an instance of a LogMeUp object. Valid input parameters are:
create() method isn't needed if this flag is set.Creates a log file. Callback parameters:
Deletes a log file. Callback parameters:
Is always set to false after a LogMeUp object is instantiated or created. Once a create() is called, it's set to true. If autocreate is set to true, then create() is implicitly called and logExists will be set to true. Calling delete() will set this to false.
Logs data. Data can be a string for an object. Callback isn't necessary, but may be used for troubleshooting. Callback parameters:
var LogMeUp = require('logmeup').LogMeUp
var logger = LogMeUp.createLogger({host: "mylogmeupserver.com", port: 7070, collection: "crabshack", app: "slickserver", autocreate: true});
Note: Setting autocreate to true will prevent you from having to call create() before you start logging.
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"
"autocreate": true
}
//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
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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.