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

block-documentation

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

block-documentation

Module that reads Typescript interfaces and outputs documentation for backend API's

  • 0.2.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Generate block documentation

This module to automatically generate documentation for backend development based on TypeScript interfaces. It uses the Typhen module to scan the interfaces and then parses it into a re-usable json object

Setup

Clone the repository and then run:

npm i

Demo

To preview output run the following script

npm run example

Methods

generate(options:Object):void

Fully generate the block documentation include a index.html file to preview the generated output, see the configuration for the available options

generateData(options:object):void

Only output the data.json file so you can have your own custom template for displaying generated output, see the configuration for the available options

Documentation

Configuration

When running the generate method you can pass along an options:

  • [required][object] Options The root options object
    • [required][string|object] input: The root folder where the task will look for blocks/files
    • [required][string] output: The output folder where the documentation will be generated
    • [string] jsonFile: The name of the file that contains all the documentation
    • [string] interfaceName: The template used to find the interface file {blockId} will be replaced with the folder name
    • [string] exampleBlockIdLabel: This is the label that's used for generating the example output
    • [string] silent: Run the module without any logs
    • [object] placeholderValues: Object containing the values that are used when no @placeholder is provided
      • [string] string: The default placeholder value of a string
      • [boolean] boolean: The default placeholder value of a boolean
      • [number] number: The default placeholder value of a number
Input configuration

The input can be defined in a string or an object. If you want to skip the folder input completely you can just define some files that will be scaffolded.

Direct path to folder

{
	input: './input/'
}

Direct path to folder with extra files

{
	input: {
		folder: './input/',
		files: [
			'./foo/IFooFile.ts',
			'./bar/IBarFile.ts',
		]
	}
}

Only files defined

{
	input: {
		files: [
			'./foo/IFooFile.ts',
			'./bar/IBarFile.ts',
		]
	}
}

Creating interfaces

All blocks have an interface which describes the data required for the block to provide the data used in the documentation you can use a couple of YUIDoc comments

Used YUI doc comments
  • @placeholder: This will be used to overwrite the predefined placeholder value
  • @ignore: If this comment is available it will be skipped
  • @description: This is the description about the property
  • @defaultValue: If a default value is present you can provide it with this comment
  • @rawName: When you use a stringLiteral to type a property you need to define the raw name of the property (see the example interface)

Examples

Example folder structure

Root folder
├── block-foo
│   └── IBlockFooOptions.ts
├── block-bar
│   └── IBlockBarOptions.ts
└── ...
Example Interface
import IImage from "./interface/IImage";
import Theme from "./enum/Theme";

interface IBlockDummyOptions
{
	/**
	 * @ignore
	 * @description This is the Id of the interface that will be ignored by the generate task
	 */
	id:string;
	/**
	 * @description The heading displayed
	 * @defaultValue Define the default value of the property if required
	 * @placeholder This is a defined placeholder value
	 */
	header:string;
	/**
	 * @description The image is referenced to another interface
	 */
	image:IImage
	/**
	 * @description The theme is referenced to an external Enum
	 */
	theme?:Theme
	/**
	 * @description A forced string value
	 * @rawName definedString
	 */
	definedString: "stringValue1" | "stringValue2";
}

export default IBlockDummyOptions
Example configuration
const blockDocumentation = require('block-documentation');

blockDocumentation.generate({
    input: {
    	folder: './input/',
    	files: [
    		'./path/to/file.ts'
    	]
    },
    output: './output/',
    jsonFile: 'data.json',
    interfaceName: 'I{blockId}Options.ts',
    placeholderValues: {
        string: 'Lorem ipsum dolor sit amet',
        boolean: true,
        number: 1
    }
})

Keywords

FAQs

Package last updated on 06 Apr 2017

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