Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

krypa

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

krypa

Front matter sitemap generator.

latest
Source
npmnpm
Version
2.0.1
Version published
Maintainers
1
Created
Source

krypa

Recursively walk through a directory and construct a front matter sitemap.

Install

npm install krypa

Getting Started

var krypa = require('krypa');
var hm = require('hjson-matter');

// generate a sitemap of YAML front-matter
var sitemap = krypa('./directory');

// specify your own front-matter parser
var sitemap = krypa('./directory', hm);

// pass ignore options to globby
var sitemap = krypa('./directory', { ignore: '!**/*.md' });

// pass ignore options AND a custom parser
var sitemap = krypa('./directory', {
  ignore: '!**/*.md',
  parser: hm
});

Parameters

krypa(directory, options)

directory {String} - Path of the directory you want to generate a front matter sitemap for.

options {Function|Object} - The ignore and parser options, or just options.parser directly.

options.ignore {String|String[]} - Glob of files to ignore to pass to globby (see node-glob).

Default: !**/*.{html,markdown,md,nunjucks,swig,twig}

options.parser {Function} - Custom parser to extract front-matter from files. This should return the front-matter data itself, so if your parser returns the data as an object property (such as attributes in front-matter), you should create a light wrapper around it.

Default: a light wrapper around gray-matter

Keywords

front matter

FAQs

Package last updated on 09 Jul 2016

Did you know?

Socket

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