Skip to content

17320/hexo-server

 
 

Repository files navigation

hexo-server

Build Status NPM version Coverage Status Build status

Server module for Hexo.

Installation

$ npm install hexo-server --save

Usage

$ hexo server
Option Description Default
-i, --ip Override the default server IP. :: when IPv6 is available, else 0.0.0.0 (note: in most systems, :: also binds to 0.0.0.0)
-p, --port Override the default port. 4000
-s, --static Only serve static files. false
-l, --log [format] Enable logger. Override log format. false
-o, --open Immediately open the server url in your default web browser. false
-P, --proxy-path Proxy the given path(s) undefined
-U, --proxy-url Proxy target URL undefined

Options

server:
  port: 4000
  log: false
  ip: 0.0.0.0
  compress: false
  header: true
  serveStatic:
    extensions:
    - html
  proxyPath: undefined
  proxyUrl: undefined
  • port: Server port
  • log: Display request info on the console. Always enabled in debug mode.
  • ip: Server IP
  • compress: Enable GZIP compression
  • header: Add X-Powered-By: Hexo header
  • serveStatic: Extra options passed to serve-static
  • proxyPath, proxyUrl: If specified, an http-proxy-middleware proxy will be instantiated as app.use(proxyPath, proxy({target: proxyUrl, changeOrigin: true})).

License

MIT

About

Server module for Hexo.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%