1.4.0 • Published 1 year ago

magic-log v1.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

magic-log v1.1.0

Usage: (NodeJS)

Initialization, logging events, adding middleware:

/// server.js
import express from 'express';
import logRequests, { logEvent, logError } from 'magic-log';

const app = express();

try {
    startServer();
    logEvent('Starting server...'); // Log a single event
} catch (err) {
    logError('Error starting server'); // Use console.error()
}

// Add middleware to log each request:
app.use(logRequests);

Use req.doNotLog() to avoid logging for a single request:

// Cancel logging for a single request:
app.get('/robots.txt', (req, res) => {
    req.doNotLog();
    res.setStatus(404).send('not found');
});

Use res.log(remark) to add a remark to a given request:

// res.log can be used to add remarks to the log entry:
app.get('/', (req, res) => {
    res.log(`in 'Hello World' endpoint`);
    res.send('Hello World');
});

res.message(status, text, {...data}) can be used to send a response:

text is logged to the server console and sent in JSON as {message: text, ...data}. Status codes > 399 use console.error; other use console.log. data is optional but can be an object that is added to the response object, after message is added. (data.message will then overwrite the provided text.)

app.get('/user', (req, res) => {
    if (user) return res.message(200, 'User logged in');
    // equivalent to:
    res.status(200).log('User logged in').send({ message: 'User logged in' });
});

app.get('/username', (req, res) => {
    if (user && username) return res.message(200, `success`, { username });
    // equivalent to:
    res.status(200).log(`success`).send({ message: `success`, username });
});

Use res.Error(text) to handle internal errors:

text is logged to the server console using console.error, but only {message: 'Internal Error'} is sent.

app.get('/data', (req, res) => {
    if (internalError) return res.Error(`in app.get('/data')`);
    // equivalent to:
    res.status(500).log(`in app.get('/data')`).send({ message: 'Internal Error' });
});
1.2.0

1 year ago

1.1.0

1 year ago

1.3.7

1 year ago

1.3.6

1 year ago

1.3.5

1 year ago

1.3.4

1 year ago

1.3.3

1 year ago

1.3.2

1 year ago

1.4.0

1 year ago

1.3.1

1 year ago

1.3.0

1 year ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.5

2 years ago

1.0.3

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago