Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@stackoverflow/stacks-editor
Advanced tools
npm install @stackoverflow/stacks-editor
<div id="editor-container"></div>
import { StacksEditor } from "@stackoverflow/stacks-editor";
// don't forget to include the styles as well
import "@stackoverflow/stacks-editor/styles.css";
new StacksEditor(
document.querySelector("#editor-container"),
"*Your* **markdown** here"
);
<!-- include the bundled styles -->
<link
rel="stylesheet"
src="path/to/node_modules/@stackoverflow/stacks-editor/dist/styles.css"
/>
<div id="editor-container"></div>
<!-- highlight.js is not included in the bundle, so include it as well if you want it -->
<script src="//unpkg.com/@highlightjs/cdn-assets@latest/highlight.min.js"></script>
<!-- include the bundle -->
<script src="path/to/node_modules/@stackoverflow/stacks-editor/dist/app.bundle.js"></script>
<!-- initialize the editor -->
<script>
new window.stacksEditor.StacksEditor(
document.querySelector("#editor-container"),
"*Your* **markdown** here",
{}
);
</script>
npm i
npm start
Run all unit tests (no end-to-end tests) using
npm test
Run all end-to-end tests (written in Playwright) using
npm run start
npm run test:e2e
End-to-end tests need to follow the convention of using someName.e2e.test.ts
as their filename and being saved in the test/e2e
directory. They'll automatically get picket up by the test runner this way.
Generate a stats.json
file for analysis using
npm run print-stats
You can upload your stats.json
file here or here for visualization. See more resources here.
FAQs
Stacks-Editor is a combination rich text / markdown editor that powers Stack Overflow's post editing experience.
The npm package @stackoverflow/stacks-editor receives a total of 0 weekly downloads. As such, @stackoverflow/stacks-editor popularity was classified as not popular.
We found that @stackoverflow/stacks-editor 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.