Socket
Socket
Sign inDemoInstall

fastmatter

Package Overview
Dependencies
14
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fastmatter

A fast frontmatter parser. Supports both string and stream inputs.


Version published
Weekly downloads
2.9K
increased by91.45%
Maintainers
1
Install size
0.957 MB
Created
Weekly downloads
 

Readme

Source

fastmatter npm Version Build Status Coverage Status

A fast frontmatter parser. Supports both string and stream inputs.

Usage

Given a document foo.md containing YAML frontmatter and content:

---
title: Hello, World!
tags: [ foo, bar, baz ]
---
Lorem ipsum dolor sit amet consectetur adipisicing elit.

…we can parse this document as a string, via fastmatter(string):

const fastmatter = require('fastmatter')
const fs = require('fs')

fs.readFile('foo.md', 'utf8', function (error, data) {
  if (error) {
    throw error
  }
  console.log(fastmatter(data))
  /* =>
   * {
   *   attributes: {
   *     title: 'Hello, World!',
   *     tags: [ 'foo', 'bar', 'baz' ]
   *   },
   *   body: 'Lorem ipsum dolor sit amet consectetur adipisicing elit.'
   * }
   */
})

…or as a stream, via fastmatter.stream([callback]):

const fastmatter = require('fastmatter')
const fs = require('fs')
const concat = require('concat-stream')

fs.createReadStream('foo.md').pipe(
  fastmatter.stream(function (attributes) {
    console.log(attributes)
    /* =>
     * {
     *   title: 'Hello, World!',
     *   tags: [ 'foo', 'bar', 'baz' ]
     * }
     */
    this.pipe(
      concat(function (body) {
        console.log(body.toString())
        //=> Lorem ipsum dolor sit amet consectetur adipisicing elit.
      })
    )
  })
)

callback is called with the frontmatter attributes, while the document body is simply passed through the stream. Also note that the this context of callback is the stream itself; this is useful if we want to change the flow of the stream depending on the parsed attributes.

API

const fastmatter = require('fastmatter')

fastmatter(string)

Parses the string and returns the parsed frontmatter attributes and document body.

fastmatter.stream([callback])

Calls callback with the parsed frontmatter attributes. The this context of callback is the stream itself. The document body is passed through the stream.

Installation

Install via yarn:

$ yarn add fastmatter

Or npm:

$ npm install --save fastmatter

License

MIT

Keywords

FAQs

Last updated on 26 Mar 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc