npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

markdown2json

v0.2.1

Published

creates a json index from markdown content directory (static search generators)

Downloads

54

Readme

Markdown to JSON converter

  • Easy conversion from markdown files to json, to create an index.

  • Later, you can inject the json into algolia search.

  • It accepts YAML or TOML front matters.

Install

	npm install markdown2json --save

Usage

Indexer

	var indexer = require("markdown2json").Indexer;

	indexer = new indexer(options);

	indexer.run().then(...);

"options" is a json with the following options:

  • dir: String. directory to loop and/or substitute in the path attribute generated in the parsed md file.
  • fileList : Array. Array of files (paths) to index.
  • index_empty_content: Boolean. If false, it won't add the md to the json if the content is empty. Default is true.
  • cleanMD: Boolean. If true, cleans markdown characters from content. Default is false.
  • excludeIfProps : Array. Excludes the document from index if a property exists.
  • removeProps: Array. Remove props from the Front Matter of the returned md.
  • excludes: Array of strings. Paths to avoid in the indexing

Parser

	var parser = require("markdown2json").parseMD;

	parser(file, options).then(...)

where "options" is a json with the following options:

  • dir: String. directory to replace and leave only relative path
  • cleanMD: Boolean. if true, cleans markdown characters from content. Default is false
  • removeProps: Array. Remove props from the Front Matter of the returned md.

Parsed objects

Parsed object include:

  • all the metadata in the front matter
  • path: filepath without the root dir, if present
  • objectID: base64 encoded path
  • content, if exists
  • indexTime: time in millis of the indexation

Example - loop over a content directory, for example, from gohugo static site generator

	var indexer = require("markdown2json").Indexer;

	var algoliasearch = require('algoliasearch');
	var client = algoliasearch('YOURAPP ID', 'MANAGEMENT API KEY');
	var algolia = client.initIndex('indexname');

	indexer = new indexer(
		{
			"dir" : "./content",
			"domain" : "http://yourdomain.com",
			"index_empty_content" : false, //if md content == "", is not indexed
			"excludeIfProps" : ["my_custom_prop"],
			"cleanMD" : true,
			"removeProps" : ["image"],
			"excludes" : [
				"/path1/path2",
				"/path4"
			]
		}
	);

	indexer.run().then(
		function(idx){
			console.log(idx.length + " documents indexed");
			console.log("publishing to algolia...");

			algolia.saveObjects(idx, function(err, content) {
			  if(err===null){
				console.log("published!");
				algolia.deleteByQuery({
				  filters: 'indexTime < ' + idx[0].indexTime
				}, function(err) {
					if (!err) {
					    console.log('old records deleted');
					}
				});
			  }else{
			  	console.error(err);
			  }
			});

		}	
	)

Example - parse single file

	var parser = require("markdown2json").parseMD;

	parser("./content/markdownfile.md", {
		"dir" : "./content",
		"cleanMD" : true,
	}).then(
		function(jsonObj){
			console.log(jsonObj)
		}
	)