Code Monkey home page Code Monkey logo

heracles's Introduction

Heracles.ts Build Status Coverage Status

Reference implementation of a Hydra client in TypeScript.

Getting started

First you'll need to add the Heracles.ts module to your project:

npm install @hydra-cg/heracles.ts --save

Once added, you're ready to use the client in your code. To obtain an instance of the client just use this snippet:

import HydraClientFactory from "@hydra-cg/heracles.ts";

let hydraClient = HydraClientFactory.configure().withDefaults().andCreate();

Once the instance is obtained, you're free to use the client, i.e.:

const resource = await hydraClient.getResource("http://some.domain/api");
for (const link of resource.links) {
  // do something with the link.
}

For more example, please refer to the cookbook.

Programmer's reference is available at docs.

Hydra client factory options

There are some additional options you can use while creating a client instance. The most interesting one will be probably which resource relations should be treated as links and exposed in the links property.

These options (methods to be called on the HydraClientFactory instance) would be:

  • .withAllLinks() - treats all related resources as links
  • .withAllHttpLinks() - similar as above, but only HTTP(S) URLs will be considered
  • .withSameRootLinks() - only URLs from the same root of the requested resource will be considered
  • .withStrictLinks() - this is the default - only links exposed as hydra:link will be considered

It is also possible to use custom extensions to the client, adding i.e. support to other than built-in JSON-LD serializations of the RDF. This can be achieved either by calling:

  • .with(component: IHypermediaProcessor) - accepts a custom implementation of the IHypermediaProcessor interface
  • .withFactory(method: HypermediaProcessorFactory) - accepts a parameterles factory method that will provide the instance as required

Example usage with custom parameters:

import HydraClientFactory from "@hydra-cg/heracles.ts";

let hydraClient = HydraClientFactory
  .configure()
  .withDefaults()
  .withAllLinks()
  .andCreate();

heracles's People

Contributors

renovate-bot avatar renovate[bot] avatar alien-mcl avatar lanthaler avatar tpluscode avatar snyk-bot avatar elf-pavlik avatar

Watchers

 avatar

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.