npm install @newtral/nestjs-logger
Pino logger wrapper to be used in conjunction with NestJS
import { LoggerModule, LoggerService } from '@newtral/nestjs-logger';
import { Injectable, Module, OnModuleInit } from '@nestjs/common';
@Injectable()
class AppService implements OnModuleInit {
private readonly logger = this.loggerService.getLogger(module);
constructor(private readonly loggerService: LoggerService) {}
onModuleInit(): void {
this.logger.info('app service ready!');
this.logger.warn({ foo: 'bar' }, 'logging with metadata and formatters %s', ':)');
}
}
@Module({
imports: [
LoggerModule.forRoot({
// Default log verbosity level for every logger
// Can be overridden by the .getLogger() method
logLevel: 'info',
// Enable pretty print. The log format is json by default
prettyPrint: true
})
],
providers: [AppService]
})
class AppModule {}
The project use husky and lint-staged for linting and fixing possible errors on source code before commit
Git hooks scripts are installed after running npm install
the first time
Compile typescript files from the src
folder inside the lib
folder
Compile typescript files from the src
folder inside the esm
folder using es modules
Concurrently run both build:commonjs
and build:esm
Remove the following directories/files
- lib
- esm
- reports
Run tests files inside the tests
folder that matches the following patterns. Exit with code > 0 on
error
- *.test.ts
- *.spec.ts
The same as npm test
and generates coverages reports in reports/coverage
. Exit with code > 0 on
error
Check eslint errors according to .eslintrc
Run npm run lint
applying fixes and run prettier on every typescript file
Check for:
- Build errors
- Tests failures
- Lint errors
Run test and generate every possible report. Do not exit with error code > 0 if the tests fail. It generates a report file instead
- reports/lint-checkstyle.xml Lint report in chackstyle format
- reports/test-results.xml Test report in xUnit format
- reports/coverage/clover.xml Coverage report in clover format
- reports/coverage/cobertura-coverage.xml Coverage report in cobertura format
- reports/coverage/lcov.info Coverage report in lcov
- reports/coverage/index.html Coverage report in html
- Bump
package.json
version accordingly to the commit messages - Generate changelog for the new version from the commit messages
- Commit
package.json
andCHANGELOG.md
with the new changes - Create a git tag with the new version
- You'll need to execute
git push --follow-tags origin master
after generating a release