0.0.22 • Published 7 years ago

style-pot v0.0.22

Weekly downloads
3
License
MIT
Repository
github
Last release
7 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

7 years ago

0.0.21

7 years ago

0.0.20

8 years ago

0.0.19

8 years ago

0.0.18

8 years ago

0.0.17

8 years ago

0.0.16

8 years ago

0.0.15

8 years ago

0.0.14

8 years ago

0.0.13

8 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago

0.0.0

8 years ago