Git Product home page Git Product logo

auto-awesome's Introduction

auto-awesome

NPM

An automatic awesome list generator

What is an awesome list?

See sindresorhus' awesome manifesto for what an awesome list is. They are basically curated lists of resources for developers.

What does auto-awesome do?

Auto-awesome takes a barebones markdown file and does the heavy lifting for turning it into an awesome list! It adds 2 new things to the markdown syntax, a table of contents tag, and a listing tag, which searches on GitHub for that piece of software and adds a description and link for it.

Example

If you want to see an example of this, look at before.md, and after.md.

Usage

This can take quite some time for a large file, as it has to look up each item on the list.

If you are getting an API rate limit error, your file is too big and/or you are re-running this fast. To authenticate to get a higher rate limit, generate a github token (with minumum permissions), and set the github_token env variable to the token.

Syntax

This extends markdown with 2 more tags.

  • !toc! inserts a table of contents for all headings under it. (you can only have one of these)
  • !!repo searches GitHub for repo and inserts a link and description of it.
  • !!user/repo gets the link and description for the repo at user/repo on GitHub and inserts it.
  • !!repo~name gets the repo (in the format seen above), and sets the name to name. (by default it takes the repository name from GitHub, which sometimes fails in examples such as npm/cli)

API

Requiring auto-awesome-list after installing it with npm install auto-awesome-list returns a very simple function.

Usage

The first parameter of the function is a string containing the raw, input markdown. You can get this using fs, or other means. The second parameter is a callback, that takes one parameter, the processed markdown file.

Example

const autoAwesome = require("auto-awesome-list");
const md = "!!nodejs"
autoAwesome(md, data => {
    console.log(data); // logs: [node](https://github.com/nodejs/node) - Node.js JavaScript runtime...
});

CLI

Install with npm install -g auto-awesome-list

Usage

Reads input from stdin or the file in the passed parameter. Outputs to stdout or the file listed in the '-o' argument.

Example

auto-awesome before.md -o after.md

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.