object-to-query

1.0.1 • Public • Published

object-to-query Build Status

an small library to convert js objects to querystrings

Usage

  • Install with npm

      npm install object-to-query --save
    
  • Start using is as simple as:

     const transform = require('object-to-query')
    
     const result = transform({ id: 1, name: 'Eduardo' });
    
     console.log(result);
    
     // output &id=1&name=Eduardo
  • You can exclude the properties you want

     const transform = require('object-to-query')
    
     const result = transform({ id: 1, name: 'Eduardo', notThisOne: 'i am a bad property', age: 30 }, ['notThisOne']);
    
     console.log(result);
    
     // output &id=1&name=Eduardo&age=30
  • I want the question mark as the first symbol in my string!!11UNO

     const transform = require('object-to-query')
    
     const result = transform({ id: 1, name: 'Eduardo' }, [], true);
    
     console.log(result);
    
     // output ?id=1&name=Eduardo

Development

  1. Install dependencies

     npm install
    
  2. Write your code! Yep that's it!

Testing

  1. We are using tape because is small and awesome, only run the default test command

     npm test
    
  2. If everything looks green you are fine.

Code Coverage

  1. Istanbul

Dependencies (0)

    Dev Dependencies (6)

    Package Sidebar

    Install

    npm i object-to-query

    Weekly Downloads

    1

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • erivero