0.4.6 • Published 1 year ago

mxik v0.4.6

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

mxik-js

Simple package for API calls tasnif.soliq.uz (written in TypeScript ⚡) ️

Install

Via package manager

# NPM
$ npm install mxik

# yarn
$ yarn add mxik

Usage

import { MXIKSearch } from 'mxik'

// works if u have top-level await
const response = await MXIKSearch('search query', { limit: 10 })

// or 
async function doSomething() {
    const response = await MXIKSearch('search query', { limit: 10 })
}

via cdn

Copy the following URL and paste it into your HTML code via script tag

https://unpkg.com/mxik@0.0.1/mxik.umd.js

Example

<body>
    <head>
        <titl>Your site</titl>
        ...
    </head>

    <script src="https://unpkg.com/mxik@0.0.1/mxik.umd.js"></script>
    <script>
        async function doSomething() {
            const response = await MXIKSearch('search query', { limit: 10 })
        }
        
        async function doAnother() {
            const response = await MXIKSearchByCode('06109001001000000', { limit: 10 })
        }
    </script>
</body>

Examples

Search items

async function doSomething() {
    const response = await MXIKSearch('search query', { limit: 10 })
}

Search items by mxik code

async function doSomething() {
    const response = await MXIKSearchByCode('06109001001000000', { limit: 10 })
}

Get mxik code details

async function doSomething() {
    const response = await MXIKDetails('06109001001000000')
}

API

MXIKSearch(keyword: string, options: object)

ParamDefault valueDescription
keyword string-Find items by name
options object{ ... }Search options
options.limit object20Items count per page

MXIKSearchByCode(keyword: string, options: object)

ParamDefault valueDescription
keyword string-Pass a mxik code
options object{ ... }Search options
options.limit object20Items count per page

MXIKDetails(code: string | number)

ParamDefault valueDescription
code string/number-Pass a mxik code

License

MIT

Copyright (c) 2022-present, azabroflovski

0.4.5

1 year ago

0.4.6

1 year ago

0.4.4

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.3.4

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago