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.
does a README.md
You can install emdaer
globally:
$ npm i -g emdaer
$ cd ~/your-project/
$ emdaer
Or you can save emdaer
to specific projects:
$ cd ~/your-project
$ npm i -D emdaer
$ ./node_modules/.bin/emdaer
Either way, invoking emdaer
requires the presence of a valid .emdaer.yml
configuration file in the current directory.
- title: true
- shields:
style: 'flat-square'
shields:
- alt: Travis
image: 'travis/flipactual/emdaer.svg'
link: 'https://travis-ci.org/flipactual/emdaer/'
- text: 'does a README.md'
- include: './docs/bin.md'
- include: './docs/configuration.md'
- license: true
emdaer
iterates over the array in .emdaer.yml
and creates a README.md
including the listed elements in the order they're provided.
.emdaer.yml
supports the following field types:
title
type: boolean
If true
, pulls title from the name
field in the project's package.json
and includes as a level one heading.
If you'd like to use a different title, use text
instead:
- text: '# My Title'
text
type: string
A string to insert into the README. Can include markdown formatting.
include
type: string
The path to a file to include in the README.
license
type: string
If true
, pulls license
and author
information from package.json
to include:
## License
<license> @ [<author.name>](<author.url>)
For any other formatting, use text
or include
.
contributors
type: boolean
If true
, creates a table including the author
and contributors
from package.json
.
You must include the GitHub ID of each user:
"author": {
"name": "Flip",
"url": "http://github.com/flipactual",
"id": 1306968
},
shields
type: object
Configuration and list of Shields to use.
shields.style
type: string
The style of shields to use. Supports plastic
, flat
, flat-square
, or social
.
shields.shields
type: array
A list of shields to include.
shields.shields[n].alt
type: string
The alt text for the Shield.
shields.shields[n].image
type: string
The path to the Shield image (eg travis/flipactual/emdaer.svg
).
shields.shields[n].link
type: string
The link to open when clicking the Shield.
MIT @ Flip
FAQs
does a README.md
We found that emdaer 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.