Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Angular directive to render Markdown text. It's built on blazingly fast markdown parser 'marked'.
Angular directive to render Markdown text. It's built on blazingly fast markdown parser marked.
Check out the demo here.
Include angular-md.js
in your project (you can do so via bower install angular-md
).
Make sure to load marked library. Optionally, load highlightjs library (as well as the corresponding css file) for code highlighting.
Load the directive after loading angular.js
<script src="path_to_marked.js"></script>
<script src="path_to_highlightjs.js"></script>
<script src="path_to_angular.js"></script>
<script src="path_to_angular-md.js"></script>
Specify angular-md as a dependency of your Angular module.
var app = angular.module('ngApp', [
'yaru22.md'
]);
Use it in your project.
<html ng-app="ngApp">
...
<body>
<md>
# How to use angular-md
This is a example of how to use angular-md.
- Bullet point 1.
- Bullet point 2.
> To use or not to use...
> - Anonymous
</md>
<!-- or -->
<md ng-include="'text.md'"></md>
<!-- or -->
<md ng-model="mdText"></md>
</body>
</html>
This seed is released under permissive MIT License.
FAQs
Angular directive to render Markdown text. It's built on blazingly fast markdown parser 'marked'.
The npm package angular-md receives a total of 115 weekly downloads. As such, angular-md popularity was classified as not popular.
We found that angular-md 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.