Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

circulus-berkel

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

circulus-berkel

![NPM Version](https://img.shields.io/npm/v/circulus-berkel)

  • 1.1.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
0
Weekly downloads
 
Created
Source

Circulus Berkel API Client

NPM Version

This Node.js module is a wrapper around the https://www.circulus.nl website, and can retrieve a JSON and iCal feed when providing a Zipcode + Number.

Installation

$ npm i circulus-berkel

Usage

As Webserver

$ circulus-berkel
Server listening on http://0.0.0.0:3000
GET http://localhost:3000/?zipCode=7411KT&number=1&format=ical
GET http://localhost:3000/?zipCode=7411KT&number=1&format=json

As Dependency

import CirculusBerkel from 'circulus-berkel';

const circulusBerkel = new CirculusBerkel({
  zipCode: '7411KT',
  number: '1',
});

const iCalFeed = await circulusBerkel.getIcalFeed();
console.log(iCalFeed);

const jsonFeed = await circulusBerkel.getJsonFeed();
console.log(jsonFeed);

FAQs

Package last updated on 18 Aug 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc