Socket
Socket
Sign inDemoInstall

mxik

Package Overview
Dependencies
8
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mxik

API wrapper over tasnif.soliq.uz for finding mxik codes (written in TypeScript)


Version published
Weekly downloads
9
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 20 Mar 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc