Gathering detailed insights and metrics for @midwayjs/typeorm
Gathering detailed insights and metrics for @midwayjs/typeorm
Gathering detailed insights and metrics for @midwayjs/typeorm
Gathering detailed insights and metrics for @midwayjs/typeorm
npm install @midwayjs/typeorm
Typescript
Module System
Min. Node Version
Node Version
NPM Version
73.4
Supply Chain
97.8
Quality
95.8
Maintenance
100
Vulnerability
100
License
TypeScript (62.04%)
Shell (34.78%)
JavaScript (2.99%)
CSS (0.16%)
HTML (0.03%)
Total Downloads
60,570
Last Day
74
Last Week
407
Last Month
2,095
Last Year
26,771
7,432 Stars
4,043 Commits
578 Forks
101 Watching
34 Branches
169 Contributors
Minified
Minified + Gzipped
Latest Version
3.19.2
Package Id
@midwayjs/typeorm@3.19.2
Unpacked Size
19.10 kB
Size
5.56 kB
File Count
17
NPM Version
lerna/7.4.2/node@v18.20.4+arm64 (darwin)
Node Version
18.20.4
Publised On
15 Dec 2024
Cumulative downloads
Total Downloads
Last day
-14.9%
74
Compared to previous day
Last week
-40.3%
407
Compared to previous week
Last month
-20.4%
2,095
Compared to previous month
Last year
25.7%
26,771
Compared to previous year
4
in Configuration.ts file
1import * as typeorm from '@midwayjs/typeorm'; 2import { join } from 'path'; 3 4@Configuration({ 5 imports: [ 6 typeorm, 7 ], 8 importConfigs: [ 9 join(__dirname, './config') 10 ] 11}) 12export class ContainerConfiguration { 13} 14
in config files
1export default { 2 typeorm: { 3 dataSource: { 4 default: { 5 type: 'mysql', 6 host: '', 7 port: 3306, 8 username: '', 9 password: '', 10 database: undefined, 11 synchronize: true, 12 logging: false, 13 } 14 } 15 } 16};
1// model/user.ts 2import { Entity, PrimaryGeneratedColumn, Column, OneToMany } from 'typeorm'; 3 4@Entity('test_user') 5export class Photo { 6 @PrimaryGeneratedColumn({ name: "id" }) 7 id: number; 8 9 @Column({ name: "name" }) 10 name: string; 11 12 @OneToMany(type => Message, message => message.sender) 13 messages: Message[]; 14}
in code files
1import { InjectEntityModel } from '@midwayjs/orm'; 2import { User } from './model/user'; 3import { Repository } from 'typeorm'; 4 5@Provide() 6export class UserService { 7 8 @InjectEntityModel(User) 9 userModel: Repository<User>; 10 11 async testUser() { 12 const u = new User(); 13 u.name = 'oneuser1'; 14 const uu = await this.userModel.save(u); 15 console.log('user one id = ', uu.id); 16 17 const user = new User(); 18 user.id = 1; 19 const users = await this.userModel.findAndCount({ 20 where: user 21 }); 22 return 'hello world' + JSON.stringify(users); 23 } 24}
No vulnerabilities found.
Reason
30 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
Found 3/17 approved changesets -- score normalized to 1
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
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
34 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-12-16
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