Skip to content
This repository has been archived by the owner on Mar 22, 2022. It is now read-only.

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tbhaxor committed Jul 25, 2019
1 parent 725699f commit 12ef79f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# NODE-PROXIFY ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/tbhaxor/node-proxify) ![GitHub package.json version](https://img.shields.io/github/package-json/v/tbhaxor/node-proxify) ![GitHub](https://img.shields.io/github/license/tbhaxor/node-proxify) ![GitHub last commit](https://img.shields.io/github/last-commit/tbhaxor/node-proxify) ![npm](https://img.shields.io/npm/dw/proxifyjs)
# NODE-PROXIFYJS ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/tbhaxor/node-proxify) ![GitHub package.json version](https://img.shields.io/github/package-json/v/tbhaxor/node-proxify) ![GitHub](https://img.shields.io/github/license/tbhaxor/node-proxify) ![GitHub last commit](https://img.shields.io/github/last-commit/tbhaxor/node-proxify) ![npm](https://img.shields.io/npm/dw/proxifyjs)

**node-proxify** is a promise based handy module for nodejs developers to find fresh and working free proxies from https://free-proxy-list.net/ by calling only one function
**node-proxifyjs** is a promise based handy module for nodejs developers to find fresh and working free proxies from https://free-proxy-list.net/ by calling only one function

## Requirements

Expand All @@ -12,13 +12,13 @@
1. Install from npm

```sh
$ npm i proxifyjs
$ npm i node-proxifyjs
```

2. Use

```ts
const proxify = require("proxifyjs");
const proxify = require("node-proxifyjs");
(async () => {
let data = await proxify(); // this will return
Expand All @@ -33,7 +33,7 @@
pass an object property `count` to the function

```ts
const proxify = require("proxifyjs");
const proxify = require("node-proxifyjs");
(async () => {
let data = await proxify({ count: 20 }); // this will return first 20 proxies
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "proxifyjs",
"name": "node-proxifyjs",
"version": "1.0.1",
"description": "Handy node.js package to find fresh and working proxies from https://free-proxy-list.net/",
"main": "dist/index.js",
Expand Down

0 comments on commit 12ef79f

Please sign in to comment.