Gathering detailed insights and metrics for @automapper/nestjs
Gathering detailed insights and metrics for @automapper/nestjs
Gathering detailed insights and metrics for @automapper/nestjs
Gathering detailed insights and metrics for @automapper/nestjs
@ttshivers/automapper-nestjs
AutoMapper TypeScript NestJS integration
devhub-nestjs-automapper
A lightweight, zero-dependency automapper for NestJS applications
automapper-nestjs
AutoMapper TypeScript NestJS integration
@timonmasberg/automapper-nestjs
Temporary package release for NestJS v10 compatibility
npm install @automapper/nestjs
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (76.41%)
MDX (18.84%)
JavaScript (4.4%)
CSS (0.36%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
1,007 Stars
785 Commits
94 Forks
9 Watchers
17 Branches
20 Contributors
Updated on Jul 11, 2025
Latest Version
8.8.1
Package Id
@automapper/nestjs@8.8.1
Unpacked Size
21.70 kB
Size
4.27 kB
File Count
14
NPM Version
10.1.0
Node Version
20.9.0
Published on
Jan 23, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
3
This is a NestJS module to integrate @automapper
with NestJS.
1npm i @automapper/nestjs
or with yarn
:
1yarn add @automapper/nestjs
peerDependencies
@automapper/nestjs
depends on @automapper/core
1npm i @automapper/core
or with yarn
:
1yarn add @automapper/core
Call AutomapperModule.forRoot()
and provide some options to initialize the Mapper
object(s).
1// Single Mapper 2@Module({ 3 imports: [ 4 AutomapperModule.forRoot({ 5 strategyInitializer: classes(), 6 }), 7 ], 8}) 9export class AppModule {} 10 11// Multiple Mappers 12@Module({ 13 imports: [ 14 AutomapperModule.forRoot( 15 [ 16 { 17 name: 'classes', 18 strategyInitializer: classes(), 19 }, 20 { 21 name: 'pojos', 22 strategyInitializer: pojos(), 23 }, 24 ], 25 { 26 /* globalErrorHandler: ErrorHandler */ 27 /* globalNamingConventions: NamingConvention | {source, destination} */ 28 } 29 ), 30 ], 31}) 32export class AppModule {}
AutomapperModule
is a Global
module so when Mapper
object(s) are initialized, they're available across the application.
Read more about this on the documentation site
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
Found 9/30 approved changesets -- score normalized to 3
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
project is not fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
75 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More