Gathering detailed insights and metrics for @ordentco/ramenbox
Gathering detailed insights and metrics for @ordentco/ramenbox
Gathering detailed insights and metrics for @ordentco/ramenbox
Gathering detailed insights and metrics for @ordentco/ramenbox
npm install @ordentco/ramenbox
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
1 Stars
159 Commits
4 Watchers
6 Branches
5 Contributors
Updated on Dec 09, 2021
Latest Version
2.1.69
Package Id
@ordentco/ramenbox@2.1.69
Unpacked Size
68.74 kB
Size
13.87 kB
File Count
44
NPM Version
6.14.13
Node Version
14.17.1
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
13
/# Adonis Ramenbox
Adonis Ramenbox requires Adonisjs v4 to run.
Install the PeerDependencies in your host application
1 "@adonisjs/bodyparser": "^2.0.5", 2 "@adonisjs/cors": "^1.0.7", 3 "@adonisjs/drive": "^1.0.4", 4 "@adonisjs/fold": "^4.0.9", 5 "@adonisjs/generic-exceptions": "^3.0.1", 6 "@adonisjs/validator": "^5.0.6", 7 "adonis-bumblebee": "^2.1.0", 8 "adonis-lucid-filter": "^1.0.5", 9 "@ordentco/adonis-drive": "^1.0.2", 10 "@slynova/flydrive": "^1.0.3", 11 "@slynova/flydrive-gcs": "^1.0.3"
set your config/drive.js
1'use strict' 2 3const Helpers = use('Helpers') 4const Env = use('Env') 5 6module.exports = { 7 /* 8 |-------------------------------------------------------------------------- 9 | Default disk 10 |-------------------------------------------------------------------------- 11 | 12 | The default disk is used when you interact with the file system without 13 | defining a disk name 14 | 15 */ 16 default: 'local', 17 18 disks: { 19 /* 20 |-------------------------------------------------------------------------- 21 | Local 22 |-------------------------------------------------------------------------- 23 | 24 | Local disk interacts with the a local folder inside your application 25 | 26 */ 27 local: { 28 driver: 'local', 29 config: { 30 root: Helpers.tmpPath() 31 } 32 }, 33 34 /* 35 |-------------------------------------------------------------------------- 36 | S3 37 |-------------------------------------------------------------------------- 38 | 39 | S3 disk interacts with a bucket on aws s3 40 | 41 */ 42 s3: { 43 driver: 's3', 44 config: { 45 key: Env.get('S3_KEY'), 46 secret: Env.get('S3_SECRET'), 47 bucket: Env.get('S3_BUCKET'), 48 region: Env.get('S3_REGION') 49 } 50 }, 51 52 gcs: { 53 driver: 'gcs', 54 config: { 55 keyFilename: Env.get('GCS_KEY_FILE_NAME'), // path to json file 56 bucket: Env.get('GCS_BUCKET') 57 } 58 } 59 } 60}
add provider to start/app.js
1const providers = [ 2 ... 3 '@adonisjs/validator/providers/ValidatorProvider', 4 '@ordentco/adonis-drive/providers/DriveProvider', 5 'adonis-bumblebee/providers/BumblebeeProvider', 6 'adonis-lucid-filter/providers/LucidFilterProvider', 7 ... 8]
1const RamenController = require('../../../packages/ramenbox/src/Controller/RamenController')
1const RamenController = require('../../../packages/ramenbox/src/Controller/RamenController')
1static get properties () { 2 return ['id', 'username', 'password', 'email', 'created_at', 'updated_at', 'image'] 3 }
1static get slug(){ 2 return 'email' 3 }
1 static get rules(){ 2 return { 3 post: { 4 email: 'required|email|unique:users,email', 5 username: 'required' 6 } 7 } 8 }
1 static get relations(){ 2 return ['profiles', 'tokens'] 3 }
1 static get sanitize(){ 2 return { 3 post: { 4 'email': 'normalize_email' 5 } 6 } 7 }
1 const RamenTransformer = require('../../../packages/ramenbox/src/Controller/RamenController')
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
license file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
32 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