New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

aurelius

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aurelius

converts javascript code with markdown comments into documentation markdown pages

  • 0.1.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Aurelius

Aurelius is a simple library to convert code with markdown comments to markdown pages.

It's meant to be a helpful tool to convert executable and testable code into documentation pages. One of the hard parts of mantaining an updated documentation is making sure the code examples still work. If you write your documentation pages as code, you can execute them to make sure they are always updated.

Run once

If you want to run aurelius from the command line only once, you can do:

npx aurelius <file paths>

Running from the cli

When you run aurelius from the cli, you have two arguments:

  • --out: path to the folder we will write the markdown files to (if not set, output files will be at the same directory as the input files)
  • every other argument will be treated as input file path globs

Installing

yarn global add aurelius

or

npm install -g aurelius

Running

Then you can run:

aurelius --out <output folder> <file paths>

For example:

aurelius --out docs src/**

As a library

You can also install aurelius as a dependency and use it directly in your code:

In your command line:

yarn add aurelius

In your code:

const aurelius = require('aurelius');

...
const code = await fs.readFile("file.js");
const markdown = aurelius(code, 'javascript');

FAQs

Package last updated on 16 Mar 2020

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc