Giter Site home page Giter Site logo

fvdm / nodejs-openkvk Goto Github PK

View Code? Open in Web Editor NEW
2.0 3.0 0.0 56 KB

Unofficial Openkvk.nl module for Node.js

Home Page: https://www.npmjs.com/package/openkvk

License: The Unlicense

JavaScript 100.00%
kvk register government dutch nodejs overheid api-client unlicense

nodejs-openkvk's Introduction

openkvk

Greenkeeper badge

Node.js package for OpenKvK (unofficial)

npm Build Status Dependency Status Coverage Status

Example

var openkvk = require ('openkvk') ({
  apikey: 'abc123'
});

// Search on keyword
openkvk ({ query: 'ahold' }, console.log);

// Find by dossier ID - Output like search
openkvk ('12345', console.log);

// Find by subdossier ID - Output only details
openkvk ('58488340/0000', console.log);

Installation

npm install openkvk --save

Configuration

The module setup function takes an object with these parameters:

param type required default description
apikey string yes Your Overheid.io API key
timeout number no 5000 Request wait timeout in ms

Example

var kvk = require ('openkvk') ({
  apikey: 'abc123',
  timeout: 8000
});

Unlicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org/

Author

Franklin van de Meent

Buy me a coffee

nodejs-openkvk's People

Contributors

fvdm avatar greenkeeper[bot] avatar greenkeeperio-bot avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

nodejs-openkvk's Issues

Action required: Greenkeeper could not be activated 🚨

🚨 You need to enable Continuous Integration on all branches of this repository. 🚨

To enable Greenkeeper, you need to make sure that a commit status is reported on all branches. This is required by Greenkeeper because it uses your CI build statuses to figure out when to notify you about breaking changes.

Since we didn’t receive a CI status on the greenkeeper/initial branch, it’s possible that you don’t have CI set up yet. We recommend using Travis CI, but Greenkeeper will work with every other CI service as well.

If you have already set up a CI for this repository, you might need to check how it’s configured. Make sure it is set to run on all new branches. If you don’t want it to run on absolutely every branch, you can whitelist branches starting with greenkeeper/.

Once you have installed and configured CI on this repository correctly, you’ll need to re-trigger Greenkeeper’s initial pull request. To do this, please delete the greenkeeper/initial branch in this repository, and then remove and re-add this repository to the Greenkeeper integration’s white list on Github. You'll find this list on your repo or organization’s settings page, under Installed GitHub Apps.

NodeJS OpenKvk returns SyntaxError: Unexpected token <

Hello i am trying to get results from the OpenKvk Node API, avalable in the npm libary. I use the example which is given on the website: https://frankl.in/code/openkvk-voor-node-js

I register on the webiste: https://overheid.io and make an API Key which delivers me a token number which i used in the code

Which provide me the folowing code:

var openkvk = require ('openkvk') ({
    apikey: '[TokenKey come's here]'
});

   openkvk( 'ahold', function( err, data ) {
                if( err ) { return console.log( err )}
                data.forEach( function( rec ) {
                    console.log( rec )
                })
            })

openkvk returns the following error:

{ [Error: invalid response]
  error: [SyntaxError: Unexpected token <],
  code: 302,
  body: '<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset="UTF-8" />\n        <meta http-equiv="refresh" content="1;url=https://overheid.io/api/kvk/000ahold" />\n\n        <title>Redirecting to https://overheid.io/api/kvk/000ahold</title>\n    </head>\n    <body>\n        Redirecting to <a href="https://overheid.io/api/kvk/000ahold">https://overheid.io/api/kvk/000ahold</a>.\n    </body>\n</html>' }

What i expected is the following result:

// Koninklijke Ahold N.V. (Zaandam)
// Ahold Group Support B.V. (Zaandam)
// ...
On the website https://overheid.io you can see that they receive the requests:

enter image description here

What am i doing wrong?

With kind regards
Erik

An in-range update of dotest is breaking the build 🚨

The devDependency dotest was updated from 2.5.0 to 2.6.0.

🚨 View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

dotest is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 12 commits.

  • e8d3095 2.6.0
  • 85f85d9 Docs(changelog): Update changelog
  • 330083e Refactor: Replaced istanbul with nyc
  • 0bcf073 Chore(package): Update dependencies
  • f138e11 Chore(package): Update minimum node version
  • d48e381 Docs: Minor clean up
  • 2892933 Test: Improve coverage for error() and fail()
  • 786d1ca Feat: Add log() dontCount argument
  • 0fb58f7 Test(config): Update Travis node versions
  • 57bfb71 Test(config): Update ESLint ES version to 2017
  • 9a4401d chore(package): update eslint to version 5.15.2 (#30)
  • 667f55d Fix(runner): Incorrect Codacy env check

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot 🌴

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.