# mn_https

> common methods of https

Latest version **1.0.0** (published 2018-12-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install mn_https
pnpm add mn_https
yarn add mn_https
bun add mn_https
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2018-12-10 |
| First published | 2018-12-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 19.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | moonlight |
| Maintainers | menghuiqiang999 |
| Keywords | mn_https;get;post;https;https, get;https, post; |

## Links

- npm: https://www.npmjs.com/package/mn_https
- Repository: https://github.com/menghuiqiang999/mn_https
- Homepage: https://github.com/menghuiqiang999/mn_https#readme
- Issues: https://github.com/menghuiqiang999/mn_https/issues
- npm.io page: https://npm.io/package/mn_https

## Recent versions

- 1.0.0 (latest) — 2018-12-10

## README

#This is a function from Moonlight
#Quick Start
##install
    npm install mn_https
##Basic Usage

    const Https= require("mn_https");

    const https= new Https();

###get

param host - such as  qyapi.weixin.qq.com

param path   - such as /cgi-bin/uer/get?access_token=ACCESS_TOKEN ......

param callback

example

    https.get(host,path,function(err,result){
          ......
    });


###post

param host - Such as  qyapi.weixin.qq.com

param uri - Such as /cgi-bin/uer/get?access_token=ACCESS_TOKEN ......

param content

param callback

example

    var host = "qyapi.weixin.qq.com";
    var url = "/cgi-bin/user/create?access_token=" + access_token;
    var content=JSON.stringify(data);
    https.post (host,path,content,function(err,result){
        ......
    });

---
_Source: https://npm.io/package/mn_https · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
