🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

rollup-plugin-express-proxy

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-express-proxy

rollup http server plugin, support http proxy.

1.0.4
latest
npm
Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Rollup plugin to serve the bundle and proxy http

Installation

# Rollup v>2+ 
npm install --save-dev rollup-plugin-express-proxy

Usage

// rollup.config.js
import serve from 'rollup-plugin-express-proxy'

export default {
  input: 'src/main.js',
  output: {
    file: 'dist/bundle.js',
    format: ...
  },
  plugins: [
    serve({
        port: 8080,
        contentBase: path.resolve(__dirname, "../public"),
        proxy: {
            "api": {
                destination: "http://baidu.com",
                test: "/api",
                proxyReqOptDecorator:function(proxyReqOpts, srcReq) {
                    return proxyReqOpts;
                },
                proxyReqPathResolver:function(req, res) {
                    return req.originalUrl;
                }
            }
        }
    })
  ]
}

Options

By default it serves the current project folder. Change it by passing a string:


// Default options
serve({
  // Launch in browser (default: false)
  open: true,

  // Page to navigate to when opening the browser.
  // Will not do anything if open=false.
  // Remember to start with a slash.
  openPage: '/different/page',

  // Folder to serve files from
  contentBase: '',

  // Path to fallback page
  historyApiFallback: '/200.html',

  port: 10001,

  // Set up simple proxy
  // this will route all traffic starting with
  // `/api` to http://localhost:8181/api
  proxy: {
    api: 'http://localhost:8181'
  }
})

Keywords

rollup

FAQs

Package last updated on 13 Feb 2023

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