
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
feathers-logger
Advanced tools
Logging mixin for a Feathers app.
Install the module with: npm install feathers-logger --save
var feathers = require('feathers');
var logger = require('feathers-logger');
var app = feathers()
.configure(logger())
.use('/users', userService);
Feathers-logger is just a simple wrapper for any logger so that you can conveniently do app.log(). There are 4 methods provided for you to use:
app.log()app.info()app.warn()app.error()app.debug()They have graceful fallback to the core nodejs console methods.
var feathers = require('feathers');
var logger = require('feathers-logger');
var memory = require('feathers-memory');
var app = feathers()
.configure(logger())
.use('/users', memory);
app.log('Server Started');
var winston = require('winston');
var feathers = require('feathers');
var logger = require('feathers-logger');
var memory = require('feathers-memory');
var app = feathers()
.configure(logger(winston))
.use('/users', memory);
app.log('Server Started');
var morgan = require('morgan');
var feathers = require('feathers');
var logger = require('feathers-logger');
var memory = require('feathers-memory');
var app = feathers()
.configure(logger(morgan({
format: 'dev'
})))
.use('/users', memory);
app.log('Server Started');
See example directory.
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using the npm test.
0.2.0
0.1.0
Copyright (c) 2018
Licensed under the MIT license.
FAQs
Simple logging for feathers
We found that feathers-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.