Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

elm-doc-preview

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elm-doc-preview

Elm packages documentation previewer with hot reloading.

  • 2.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.3K
increased by11.92%
Maintainers
1
Weekly downloads
 
Created
Source

elm-doc-preview

This is an Elm 0.19 documentation previewer for packages, applications and their dependencies.

It aims at rendering documentation exactly like the official package website to avoid any surprise when releasing a package.

Note that applications documentation is not yet supported by Elm, so only the README and dependencies are supported for those at the moment.

Features

  • Packages full support with hot reloading
  • Offline dependencies documentation for packages and applications
  • Regex filtering for focused documentation
  • Compilation errors display (packages only)
  • Online documentations sharing for reviews (using the online version)

Installation

$ npm install -g elm-doc-preview

Usage

Usage: edp|elm-doc-preview [options] [path_to_package_or_application]

Options:
  -V, --version      output the version number
  -p, --port <port>  the server listening port (default: 8000)
  -h, --help         output usage information

Environment variables:
  ELM_HOME           Elm home directory (cache)

For example, from the directory where your package elm.json is:

$ elm-doc-preview

or

$ edp

or from anywhere:

$ elm-doc-preview path/to/package_or_application

Online version

There is also an online version supporting documentations loading from github to share them for online reviews:

https://elm-doc-preview.netlify.com

It does not support hot-reloading or dependencies documentation though.

API

const DocServer = require('elm-doc-preview');

// constructor(path_to_elm_json = ".")
const server = new DocServer();

// Optionaly exit cleanly on SIGINT to let temporary files be removed
process.on("SIGINT", () => { process.exit(0); });

// listen(port = 8000)
server.listen();

Credits

Keywords

FAQs

Package last updated on 18 Mar 2019

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