Drop-in, zero-dependency scoped logger. Allows for better event tracking, by providing distinguishable log outputs per module / section of a project.
Simply install with npm i scriba
Usage is simple! Just drop in, instantiate, and use!
import Logger from 'scriba';
const {logInfo, logError} = new Logger();
logInfo('Hello, world!'); // [INFO] Hello, world!
logError('Something is wrong.') // [ERROR] Something is wrong. (As an error)
logInfo({hello: 'World'}); // [INFO] {hello: 'World'}
Scoping is as easy as providing a name upon instantiation
const {logInfo} = new Logger({scope: 'MY_SCOPE'});
logInfo('Hello, world!'); // [MY_SCOPE] [INFO] Hello, world!
By default, output is colorized (green scope, and various colors for types). This can be disabled by passing a color
argument into the Logger
constructor.
const {logInfo} = new Logger({color: false});
Logger allows you to connect a custom database transport layer for easy saving of your logs. This database transport is in the following form
type DatabaseType = {
save: data => void
};
Usage of the transport layer is simple!
const database = {
save: data => {
// Save your log data
}
};
const {logInfo} = new Logger({database})
logInfo('Hello, world!'); // database.save will be called
Data will be passed to database.save
in the following format for you to handle
type Data = {
data: any, // the information passed to the logger
type: 'info' | 'error', // default is 'info'
scope: string,
timestamp: Date,
...extraArguments // Any additional arguments passed to logger
};
Test can be run as easily as npm test
The rest runner of choice is Ava.
Code style is enforced with XO.
Files are typed with Flow.
Feel free to pick up any issues you see! Just fork, make the changes, and open a pull request.
Scribae (literally: scribes) were public notaries in ancient Rome, tasked with recording official information on public tablets Wikipedia. The name seemed fitting, given that this package just writes down what you tell it.
Even though I am calling this a "zero-dependency" logger, there are development dependencies. The module itself requires no dependencies.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.