0.0.22 • Published 9 years ago

style-pot v0.0.22

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

Style.Pot

In terminal

Installation

$ npm i -g style-pot

Usage

  1. Generate doc jsons

    $ style-pot generate --src SRC_PATH --out DEST_PATH [--base BASE_PATH_OF_SRC]
  2. Start doc server

    $ style-pot serve --json DOC_JSON_PATH \
        [--port PORT] \
        [--deps DEPENDENCY_STYLE_FILE_PATHs] \
        [--static STATIC_FILE_PATHs] \
        [--proxy-map PROXY_MAP_JSON]
        --
    $ open http://localhost:<PORT>
    • PORT: port number to be listened
    • DEPENDENCY_STYLE_FILE_PATHs: file paths for preloaded assets
    • STATIC_FILE_PATHs: file paths to be served via /
    • (experimental) PROXY_MAP_JSON: JSON string represent a map for pathnames to be proxied and the upstream host URL such as {"/something/to/be/proxied":"http://example.com"}

In Node.js

Installation

$ npm i style-pot

Usage

  1. Generate doc jsons

    import StylePot from 'style-pot';
    
    StylePot.generateStyleJSONs({
      src: SRC_PATH,
      out: DEST_PATH,
      base: BASE_PATH_OR_SRC,
    });
  2. Start doc server

    import StylePot from 'style-pot';
    
    StylePot.serve({
      json: DOC_JSON_PATH,
      port: PORT,
      static: STATIC_FILE_PATHs,
      deps: DEPENDENCY_STYLE_FILE_PATHs,
      proxyMap: PROXY_MAP,
    });
0.0.22

9 years ago

0.0.21

9 years ago

0.0.20

9 years ago

0.0.19

9 years ago

0.0.18

9 years ago

0.0.17

9 years ago

0.0.16

9 years ago

0.0.15

9 years ago

0.0.14

9 years ago

0.0.13

9 years ago

0.0.12

9 years ago

0.0.11

9 years ago

0.0.10

9 years ago

0.0.9

9 years ago

0.0.8

9 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago

0.0.0

9 years ago