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.
remark-git-metadata
Advanced tools
Adds meta data about a Markdown file to a Markdown file, formatted as Front Matter.
The following meta data is added:
lastModifiedAt
using the last commit time of the file from git
lastModifiedHash
using the last commit hash of the file from git
lastModifiedBy
using the last commit author name of the file from git
lastModifiedEmail
using the last commit author email of the file from git
$ npm install remark-git-metadata
Requires remark-frontmatter
.
Given a file, example.md
, which contains the following Markdown:
---
title: Example
---
# Example
This is an example
Using remark like follows:
var vfile = require('to-vfile');
var remark = require('remark');
var frontmatter = require('remark-frontmatter');
var metadata = require('remark-metadata');
var example = vfile.readSync('example.md');
remark()
.use(frontmatter)
.use(metadata, { git: true })
.process(example, function (err, file) {
if (err) throw err;
console.log(String(file))
})
});
This will output the following Markdown:
---
title: Example
lastModifiedAt: 'Tue, 28 Nov 2017 02:44:25 GMT'
lastModifiedHash: '5820fe3db899ea7ebf997a661df92780cbe25250'
lastModifiedBy: 'Joel Jeske'
lastModifiedAt: 'joel@jeske.com'
---
# Example
This is an example
If a file has no Front Matter, it will be added by this plugin.
FAQs
Add metadata about a Markdown file as Front Matter.
The npm package remark-git-metadata receives a total of 0 weekly downloads. As such, remark-git-metadata popularity was classified as not popular.
We found that remark-git-metadata 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.