Gathering detailed insights and metrics for ng2sf-tinymce
Gathering detailed insights and metrics for ng2sf-tinymce
Gathering detailed insights and metrics for ng2sf-tinymce
Gathering detailed insights and metrics for ng2sf-tinymce
npm install ng2sf-tinymce
Typescript
Module System
Node Version
NPM Version
TypeScript (74.28%)
JavaScript (21.55%)
HTML (4.17%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
5 Stars
28 Commits
4 Forks
1 Watchers
1 Branches
3 Contributors
Updated on Jul 25, 2018
Latest Version
1.0.7
Package Id
ng2sf-tinymce@1.0.7
Size
304.55 kB
NPM Version
3.10.8
Node Version
6.9.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
1
7
60
1
1 npm install ng2sf-tinymce
Add Ng2SFTinyMCEModule
wherever you need it in your dependency tree:
1 2 import { SchemaFormModule } from "angular2-schema-form"; 3 import { Ng2SFTinyMCEModule } from "ng2sf-tinymce"; 4 5 @NgModule({ 6 imports: [ 7 BrowserModule, 8 /*...*/ 9 SchemaFormModule, 10 Ng2SFTinyMCEModule 11 ], 12 declarations: [AppComponent, /*...*/] 13 }) 14 export class AppModule {}
Register the TinyMCEWidget in your WidgetRegistry
:
1 import { WidgetRegistry } from "angular2-schema-form"; 2 import { TinyMCEWidget } from "ng2sf-tinymce"; 3 4 @Component({/*...*/}) 5 export class AppComponent { 6 constructor(widgetRegistry: WidgetRegistry) { 7 widgetRegistry.register("tinymce", TinyMCEWidget); 8 } 9 }
Use the tinymce
widget's id in your schema:
1 { 2 "type": "object", 3 "properties": { 4 "type": "string", 5 "description": "A richtext input", 6 "widget": "tinymce" 7 } 8 }
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
Found 2/25 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 effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
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