
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
jsEdit is a wysiwyg-editor entirely written in JavaScript.
It currently only supports plain-text and basic HTML-support (plus adding of images, but no resizing).
RTF and Markdown-support are planned as long time targets.
The best supported browser is chrome/chromium, but Firefox and Edge are also supported.
Every browser that supports HTML5, CSS3 and some ES6 should be fine too.
IE is currently not supported.
import JsEdit from 'jsedit';
editor = new JsEdit(document.body);
You could also specify a config-object:
editor = new JsEdit(document.body, {
onSave: (content, mime) => {
console.log('save ', content, ' as ', mime);
},
menu: {
disable: ['newFile', 'loadFile']
}
});
This config-object would mark the newFile and loadFile as disabled (you could style them like you want, they get the CSS-class 'menu__entry--disabled') and listen to the onSave-event.
Currently you could disable the following MenuEntries:
You could listen to the following events:
The current milestones could be found here. I manage this project in my free time. Because of this I will not upload a roadmap.
I will work on this project when i want to work on it, but feel free to send a merge-request.
FAQs
An editor completely written in JavaScript.
The npm package jsedit receives a total of 9 weekly downloads. As such, jsedit popularity was classified as not popular.
We found that jsedit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.