
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
@nlpjs/logger
Advanced tools
You can install @nlpjs/logger:
npm install @nlpjs/logger
const { Logger } = require('@nlpjs/logger');
const logger = new Logger();
logger.info('Hello world!!!')
By default, a logger based on console is added to the NLP.js container
const { defaultContainer } = require('@nlpjs/core');
const logger = defaultContainer.get('logger');
logger.info('This is an info message');
// This is an info message
When using the basic package of NLP.js, a logger based on pino is added.
const { dockStart } = require('@nlpjs/basic');
(async () => {
const dock = await dockStart({ use: ['Basic']});
const logger = dock.get('logger');
logger.info('This is an info message');
logger.log('This is a log message');
logger.warn('This is a warn message');
logger.error('This is an error message');
})();
You can register your own logger to the container:
const { dockStart } = require('@nlpjs/basic');
(async () => {
const dock = await dockStart({ use: ['Basic']});
const container = dock.getContainer();
const loggerInstance = {
trace: msg => console.trace(`[TRACE] ${msg}`),
debug: msg => console.debug(`[DEBUG] ${msg}`),
info: msg => console.info(`[INFO] ${msg}`),
log: msg => console.log(`[LOG] ${msg}`),
warn: msg => console.warn(`[WARN] ${msg}`),
error: msg => console.error(`[ERROR] ${msg}`),
fatal: msg => console.error(`[FATAL] ${msg}`),
}
container.register('logger', loggerInstance);
const logger = dock.get('logger');
logger.info('This is an info message');
})();
You can read the guide of how to contribute at Contributing.
Made with contributors-img.
You can read the Code of Conduct at Code of Conduct.
?
This project is developed by AXA Group Operations Spain S.A.
If you need to contact us, you can do it at the email opensource@axa.com
Copyright (c) AXA Group Operations Spain S.A.
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.
FAQs
Logger
We found that @nlpjs/logger demonstrated a healthy version release cadence and project activity because the last version was released less than 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
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.