0.2.0 • Published 2 years ago

rollup-plugin-httpfile v0.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Rollup httpfile plugin

An Rollup.js plugin to import httpfile for HTTP Request/GraphQL request.

How to use?

  • Create a http file, such as demo.http, code as following:
### get my ip
//@name my-ip
GET https://httpbin.org/ip
User-Agent: curl/7.47.0

### post test
//@name post-test
POST https://{{host}}/post
User-Agent: curl/7.47.0
Content-Type: application/json

{
  "name": "{{nick}}",
  "age": 42,
  "uuid": "{{$uuid}}"
}
  • Add rollup-plugin-httpfile to your project's package.json or npm add -D rollup-plugin-httpfile.
 "devDependencies": {
    "rollup-plugin-httpfile": "^0.1.0"
  }
  • In JavaScript/TypeScript file, such as hello.mjs, and you can import http file directly. Code as following:
import {myip} from "./demo.http";

let response = await myip();
console.log(await response.json());

rollup.config.js configuration

import httpfileResolverPlugin from "rollup-plugin-httpfile"

/**
 * @type {import("rollup/dist/rollup").RollupOptions}
 */
const config = {
    input: "demo/hello.mjs",
    output: {dir: 'dist', esModule: true},
    plugins: [
        httpfileResolverPlugin(true)
    ],
}

export default config;

Mock Support

You can mock request by adding //@mock tag for request. Code as following:

### get my ip
//@name myIp
//@mock {"origin":"127.0.0.1"}
GET https://httpbin.org/ip

For multi lines data, please add more //@mock lines.

### get csv data
//@name myData
//@mock name,gender
//@mock linux_china,M
GET https://your_service/data
Accept: text/csv

Note: if process.env.NODE_ENV is production, then mock data will not be used.

References

0.2.0

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago