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.
aiur is a tool to generate style guides with a focus on pattern libraries.
Install aiur in your project:
npm i --save aiur
You then need to write documentation using Markdown:
title: Strong
description: Pretty strong component
This is how we **strong** around here.
```html
Very <strong>strong</strong>
```
This is a regular Markdown file, with two special features:
In addition, you need to provide a aiur.config.js
:
exports.pages = {
"": "./components/welcome.md",
atoms: {
file: "./components/atoms.md",
children: {
button: "./components/button/doc.md",
strong: "./components/strong/doc.md"
}
}
};
exports.title = "Example Pattern Library";
exports.language = "en";
exports.description = "A very good pattern library"
Here you provide the page structure, a title, language and description.
Now you can generate your page by running:
npx aiur
The page will be generated and put into ./dist
. Done. You can see additional
options (like file watching) by running npx aiur -h
.
aiur is licensed under Apache 2.0 License.
FAQs
styleguide generator
We found that aiur 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
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.