Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
script-viewer
Advanced tools
CodeViewer is a lightweight, customizable web component that makes it easy to display beautifully formatted code snippets on your website
CodeViewer is a lightweight, customizable web component that makes it easy to display beautifully formatted code snippets on your website. It uses Shadow DOM to encapsulate styles, ensuring that the component will not conflict with the rest of your page.
To use CodeViewer in your project, follow these steps:
highlight.js
library and the code-viewer.js
file in your HTML file:<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/highlight.min.js"></script>
<script type="module" src="https://cdn.jsdelivr.net/gh/t-montes/code-viewer@master/code-viewer.js"></script>
code-viewer
tag in your HTML to display code snippets:<code-viewer title="main.js">
console.log("Hello World!");
// more code here
</code-viewer>
title
and font-size
You can customize the appearance and behavior of the CodeViewer component using the following attributes:
title
: Sets the title of the code snippet, which is displayed in the header bar.font-size
: Adjusts the font size of the code within the viewer.Example with custom title and font size:
<code-viewer title="main.dart" font-size="1.2rem">
// code here
</code-viewer>
To style the component globally, you can target the code-viewer
element in your CSS:
code-viewer {
/* styles here */
}
Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star!
git checkout -b feature/amazing-feature
)git commit -m 'add some amazing-feature'
)git push origin feature/amazing-feature
)Distributed under the MIT License. See LICENSE
for more information.
FAQs
CodeViewer is a lightweight, customizable web component that makes it easy to display beautifully formatted code snippets on your website
The npm package script-viewer receives a total of 1 weekly downloads. As such, script-viewer popularity was classified as not popular.
We found that script-viewer 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.