Gathering detailed insights and metrics for ngx-tinymce
Gathering detailed insights and metrics for ngx-tinymce
Gathering detailed insights and metrics for ngx-tinymce
Gathering detailed insights and metrics for ngx-tinymce
npm install ngx-tinymce
Typescript
Module System
Node Version
NPM Version
76.3
Supply Chain
100
Quality
77.9
Maintenance
100
Vulnerability
100
License
TypeScript (51.89%)
HTML (36.96%)
JavaScript (7.43%)
CSS (3.71%)
Total Downloads
673,780
Last Day
374
Last Week
1,776
Last Month
8,745
Last Year
106,076
80 Stars
39 Commits
15 Forks
5 Watching
8 Branches
4 Contributors
Minified
Minified + Gzipped
Latest Version
19.0.0
Package Id
ngx-tinymce@19.0.0
Unpacked Size
35.05 kB
Size
9.03 kB
File Count
10
NPM Version
10.8.3
Node Version
22.9.0
Publised On
23 Nov 2024
Cumulative downloads
Total Downloads
Last day
-22.7%
374
Compared to previous day
Last week
-27.6%
1,776
Compared to previous week
Last month
11.4%
8,745
Compared to previous month
Last year
-0.9%
106,076
Compared to previous year
2
Tinymce Components build with Angular.
Install ngx-tinymce
from npm
1npm install ngx-tinymce --save
Recommend: You will need tinymce.min.js
file via Build Customizer generate.
Import the ngx-tinymce
in to your root AppModule
.
1import { NgxTinymceModule } from 'ngx-tinymce'; 2 3@NgModule({ 4 imports: [ 5 NgxTinymceModule.forRoot({ 6 // Local assets 7 baseURL: './assets/tinymce/', 8 // or cdn 9 baseURL: '//cdnjs.cloudflare.com/ajax/libs/tinymce/5.7.1/', 10 }), 11 ], 12}) 13export class AppModule {}
If the local path should be adding assets configuration in angular.json
:
1"assets": [ 2 { 3 "glob": "**/tinymce.min.js", 4 "input": "./node_modules/tinymce", 5 "output": "assets/tinymce/" 6 } 7]
1@Component({ 2 template: `<tinymce />`, 3 imports: [TinymceComponent], 4}) 5export class App
Globa config:
1bootstrapApplication(AppComponent, {
2 providers: [provideTinymce({ baseURL: '//cdn.tiny.cloud/1/no-api-key/tinymce/6/' })],
3});
1import { Component } from '@angular/core'; 2 3@Component({ 4 selector: 'my-app', 5 template: `<tinymce [(ngModel)]="html"></tinymce>`, 6}) 7export class AppComponent { 8 html = ``; 9}
angular-cli
please refer to Installation instructions.stackblitz
sample available here.Name | Type | Default | Summary |
---|---|---|---|
config | any | see configure | |
loading | string,TemplateRef | - | Loading status of tinymce |
disabled | boolean | false | Set tinymce mode is readonly if true |
inline | boolean | false | Inline editor |
delay | number | 0 | Delayed rendering, unit is 'millisecond' |
placeholder | string | - | Placeholder for tinymce, NOTE: dependent on tinymce-placeholder |
ready | EventEmitter<any> | - | Tinymce ready callback |
Please follow this guidelines when reporting bugs and feature requests:
Thanks for understanding!
The MIT License (see the LICENSE file for the full text)
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 2/30 approved changesets -- score normalized to 0
Reason
1 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
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
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
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-02-03
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