0.0.4 ā€¢ Published 3 years ago

one7-utils v0.0.4

Weekly downloads
5
License
MIT
Repository
github
Last release
3 years ago

Module created for facilitated your life ;) Bringing some native PHP modules to the NODE

Install

$ npm i one-utils -s

Usage

IMPORT ALL FUNCTIONS

const { GetStr, sleep, curl, gerarCpf, include, rand, randomizador, proxy, proxy1 } = require("one-utils")

FUNCTIONS

  • curl: Function async/await for famous Curl (for request in web or applications)
  • gerarCpf: function for generate CPF valid
  • GetStr: function for exploding strings
  • include: function to include code from another file
  • proxy: function for testing your proxy in server lumtest
  • proxy1: function for testing your proxy in server Google
  • rand: function native of PHP to randomize numbers
  • randomizador: function for randomize strings or keys in array
  • sleep: function async/await for sleeping your application for some time

CURL

const { curl } = require("one-utils")

const _ = async function(){

    let first_req = await curl({
        url: '', // url of site
        method: '', // method of request: GET, PUT, POST, OPTION
        headers: {
            '':''
        },
        proxy: '', // if use proxy, `http://${username}:${password}@${url}:${port}` or `http://${url}:${port}`
        body: '' // if use method POST
    })

    console.log(first_req) // print the result of the request on the console

}()

GerarCpf

const { gerarCpf } = require("one-utils")
// generate cpf without punctuation
let cpf = gerarCpf()
// generate cpf with punctuation
let cpf_with_punctuation = gerarCpf(true)
// print on the console
console.log(cpf, cpf_with_punctuation)

GetStr

const { GetStr } = require("one-utils")

let string = 'hello world, one-utils'

let capture = GetStr(string, ', ', '-') // print 'JohnGrimm'

console.log(string, capture)

INCLUDE

code js: test.js

const { gerarCpf } = require("one-utils")
// generate cpf without punctuation
let cpf = gerarCpf()
// generate cpf with punctuation
let cpf_with_punctuation = gerarCpf(true)

code js: index.js

const { include } = require("one-utils")

include('test.js') // here's including all the code from the test.js file

console.log(cpf, cpf_with_punctuation)

PROXY

const { proxy } = require("one-utils")

const _ = async funtion(){

    let ip_proxy = 'http://127.0.0.1:80'

    let condition = await proxy(ip_proxy)

    if( condition == undefined ){
        console.log(`The Proxy: ${ip_proxy} is OFF`)
    } else if( condition.includes('ip') ){
        console.log(`The Proxy: ${ip_proxy} is ON`)
    } else {
        console.log(`The Proxy: ${ip_proxy} is OFF`)
    }

}()

PROXY1

const { proxy1 } = require("one-utils")

const _ = async funtion(){

    let ip_proxy = 'http://127.0.0.1:80'

    let condition = await proxy1(ip_proxy)

    if( condition == undefined ){
        console.log(`The Proxy: ${ip_proxy} is OFF`)
    } else if( condition.includes('google') ){
        console.log(`The Proxy: ${ip_proxy} is ON`)
    } else {
        console.log(`The Proxy: ${ip_proxy} is OFF`)
    }

}()

RAND

const { rand } = require("one-utils")

let number = rand(0, 999) // print number between 0 - 999

console.log(number)

RANDOMIZADOR

const { randomizador } = require("one-utils")

let keys = ['John', 'Grimm', 'Utils', 'Module']

let randomize = randomizador(keys) // print a random key from the array

console.log(randomize)

SLEEP

const { sleep } = require("one-utils")

const _ = async function() {
    console.log(1)
    await sleep(1000) // declared time in ms
    console.log(2)
}()

Author

šŸ‘¤ JohnGrimm

Show your support

Give a ā­ļø if this project helped you!

šŸ“ License

Copyright Ā© 2020 One7. This project is MIT licensed.