npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mtr-response

v1.1.1

Published

```bash npm i [email protected]:mtr-platform/libs/response.git#v1.1.1 ``` ### Penggunaan Deklarasikan module library yang ingin digunakan ```js const { response, responseValid } = require('mtr-response'); ``` Nama Module | Keterangan ---

Downloads

2

Readme

Response Formatting Library

Installation

npm i [email protected]:mtr-platform/libs/response.git#v1.1.1

Penggunaan

Deklarasikan module library yang ingin digunakan

const { response, responseValid } = require('mtr-response');

Nama Module | Keterangan --- | --- response | Formatting umum   | response(httpCode [Int], dataToPass [Int/String/Array/Object], res, quest [Object/Boolean]);   | daftar httpCode sesuai https://en.wikipedia.org/wiki/List_of_HTTP_status_codes responseValid | Formatting untuk validator   | responseValid(err [Object], res, next);

response

const data = { name: 'User Name', email: '[email protected]', status: '1' };
return response(200, data, res);
{
  "status": 200,
  "message": "OK",
  "value": {
    "name": "User Name",
    "email": "[email protected]",
    "status": "1"
  }
}

responseValid

checkBody(req, { ... });
const err = req.validationErrors(true);
return responseValid(err, res, next);
{
  "status": 422,
  "message": "Unprocessable Entity",
  "error": {
    "email": {
      "isEmail": true,
      "value": "notEmail.id"
    },
    ...
  }
}

quest

Untuk dapat menggunakan fitur Quest perlu didefinisikan SVC_QUEST dan SVC_QUEST_METHOD pada file .env

SVC_QUEST=http://quest-service.development.svc.cluster.local/quest/quest
SVC_QUEST_METHOD=post

Lalu tambahkan contoh potongan code berikut pada endpoint yang akan menggunakan fitur Quest Fitur ini sendiri hanya dapat dijalankan bila terdapat query param ?quest=1 atau ?quest=true

https://dev.svcgateway.meteor.asia/transaction?quest=1
// Contoh data yang ada pada endpoint
const data = {
  id: 'c69b6e5c-3079-11eb-adc1-0242ac120002',
  category_id: 'd3d4986e-3079-11eb-adc1-0242ac120002',
  prod_type: 'dbeb2aae-3079-11eb-adc1-0242ac120002',
  qty: 5,
  total: 500000,
};
// ==================
//    QUEST READY
// ==================
const { headers, query } = req;
let quest = false;
if (query.quest !== undefined) {
  const { quest: q } = query;
  if (q || q === 'true' || q === 1 || q === '1') {
    const { 'x-app-key': appKey, authorization: auth } = headers;
    quest = {
      // Mandatory
      // =========
      appKey,
      srcUrl: '/transaction', // Sesuai dengan endpoint
      srcMethod: 'post',      // Sesuai dengan endpoint
      auth,
      // =========
      // Dynamic data yg dapat digunakan sbg param pengecekan atau param goal
      prod_type: data.prod_type,
      total: data.total,
    };
  }
}
return response(200, data, res, quest); // Ada penambahan param quest

quest turunan

Fitur Quest hanya dapat dipicu melalui akses publik, misal pada contoh di atas.
Kemudian bagaimana bila API yang akan menggunakan fitur ini adalah API gateway yang hanya dapat diakses secara internal melalui code?
Hal ini dapat dilakukan dengan menambahkan query param ?quest_gw=1 atau ?quest_gw=true pada API publik yang didalamnya terdapat API gateway tersebut.
Misal:

https://dev.svcgateway.meteor.asia/transaction?quest_gw=1

Maka perlu ditambahkan contoh potongan code berikut

// ==================
//    QUEST READY
// ==================
const { query } = req;
if (query.quest_gw !== undefined) {
  const { quest_gw: q } = query;
  if (q || q === 'true' || q === 1 || q === '1') {
    await axios({
      method: 'put',
      // Tambahkan query param ?quest=1 atau ?quest=true
      baseURL: 'http://quest-service.development.svc.cluster.local/product-gateway/product?quest=1',
      headers: ...,
      data: ...,
      ...,
    })
  }
}