Gathering detailed insights and metrics for @easyv/react-ace
Gathering detailed insights and metrics for @easyv/react-ace
Gathering detailed insights and metrics for @easyv/react-ace
Gathering detailed insights and metrics for @easyv/react-ace
npm install @easyv/react-ace
Typescript
Module System
Node Version
NPM Version
37.4
Supply Chain
64.9
Quality
81.4
Maintenance
100
Vulnerability
98.2
License
TypeScript (77.48%)
JavaScript (21.48%)
HTML (0.98%)
CSS (0.06%)
Total Downloads
2,284
Last Day
1
Last Week
7
Last Month
26
Last Year
671
4,103 Stars
1,637 Commits
605 Forks
31 Watching
136 Branches
112 Contributors
Latest Version
1.0.2
Package Id
@easyv/react-ace@1.0.2
Unpacked Size
1.69 MB
Size
393.21 kB
File Count
56
NPM Version
8.5.5
Node Version
16.14.2
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
0%
7
Compared to previous week
Last month
62.5%
26
Compared to previous month
Last year
32.1%
671
Compared to previous year
46
A set of react components for Ace
NOTE FOR VERSION 8! : We have stopped support for Brace and now use Ace-builds. Please read the documentation on how to migrate. Examples are being updated.
DEMO of React Ace Split Editor
npm install react-ace ace-builds
yarn add react-ace ace-builds
1import React from "react"; 2import { render } from "react-dom"; 3import AceEditor from "react-ace"; 4 5import "ace-builds/src-noconflict/mode-java"; 6import "ace-builds/src-noconflict/theme-github"; 7import "ace-builds/src-noconflict/ext-language_tools"; 8 9function onChange(newValue) { 10 console.log("change", newValue); 11} 12 13// Render editor 14render( 15 <AceEditor 16 mode="java" 17 theme="github" 18 onChange={onChange} 19 name="UNIQUE_ID_OF_DIV" 20 editorProps={{ $blockScrolling: true }} 21 />, 22 document.getElementById("example") 23);
Checkout the example
directory for a working example using webpack.
How to add modes, themes and keyboard handlers
Support us with a monthly donation and help us continue our activities. [Become a backer]
Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
27 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
license file detected
Details
Reason
SAST tool is run on all commits
Details
Reason
2 existing vulnerabilities detected
Details
Reason
Found 2/4 approved changesets -- score normalized to 5
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
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
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