
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@remirror/extension-epic-mode
Advanced tools
Epic (power) mode extension for the remirror wysiwyg editor.
Epic (power) mode extension for the remirror wysiwyg editor.
yarn add @remirror/extension-epic-mode # yarn
pnpm add @remirror/extension-epic-mode # pnpm
npm install @remirror/extension-epic-mode # npm
This is included by default when you install the recommended remirror
package. All exports are also available via the entry-point, remirror/extensions
.
The following code sample will create a limited editor and run the available commands from this extension.
import { ExtensionPriority, RemirrorManager } from 'remirror';
import { CorePreset, EpicModeExtension } from 'remirror/extensions';
// Create the codeBlock extension
const epicModeExtension = new EpicModeExtension();
const corePreset = new CorePreset();
// Create the Editor Manager with the codeBlock extension passed through.
const manager = RemirrorManager.create([epicModeExtension, corePreset]);
// Pass the dom element to the editor. If you are using `@remirror/react` or
// other framework wrappers then this is handled for you.
const element = document.createElement('div');
document.body.append(element);
// Add the view to the editor manager.
manager.addView(element);
// Make the epic mode extension active.
epicModeExtension.setOptions({ active: true });
FAQs
Epic (power) mode extension for the remirror wysiwyg editor.
The npm package @remirror/extension-epic-mode receives a total of 42,789 weekly downloads. As such, @remirror/extension-epic-mode popularity was classified as popular.
We found that @remirror/extension-epic-mode demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.