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

tramway-connection-rest-api

v2.4.0

Published

A pre-made RestAPIConnection using http and rest principles to manipulate data

Downloads

44

Readme

Tramway RestApiProvider is a simple Provider add-on to simplify the process of reading APIs from an external client built with Node's built-in http module.

Installation:

  1. npm install tramway-connection-rest-api --save

Example project

https://gitlab.com/tramwayjs/tramway-connection-example

Documentation

Recommended Folder Structure in addition to Tramway

  • config
  • providers
  • repositories
  • entities

RestApiProvider

The RestApiProvider is a derived Provider which follows the same interface.

Configuration parameters

| Parameter | Default | Usage | | --- | --- | --- | | host | Uses ServerIPResolverService to get host machine's IP | Source of API, use it when you have a direct accessible path | | port | 8080 | Port API is on | | path | "/" | Path from host that resource is on | | respondAsText | false | Defaults to returning an object, this override will return the response as is from the buffer | | headers | undefined | Indicates what headers to use with the request. Note that for a standard API that will perform POST and PUT requests with a JSON object, it is recommended to use the following as part of your headers: {"content-type": "application/json; charset=utf-8"}. |

Getting started

It is recommended to make a config file with the API's core data and make an extension class to handle it before injecting that extension class into the model to work with the rest of Tramway's built-in features. The alternative to the extension class is calling the config parameters with the Repository every time the repository is used instead of just importing the provider to the repository.

In your config folder add a file after the name of your API.

yourapi.js:

export default {
    "host": "127.0.0.1",
    "port": 8080,
    "path": "yourresourcepath",
    "respondAsText": false,
    "headers": {"content-type": "application/json; charset=utf-8"}
};

Next up, the wrapper Provider is simple enough:

YourAPIProvider.js:

import RestApiProvider from 'tramway-connection-rest-api';
import options from '../config/yourapi.js';

/**
 * @export
 * @class YourAPIProvider
 * @extends {RestApiProvider}
 */
export default class YourAPIProvider extends RestApiProvider {
    constructor() {
        super(options);
    }
}

And then to get the most of it, pass the provider to your Repository class.

import {Repository} from 'tramway-core-connection';
import YourAPIProvider from '../connections/YourAPIProvider';

new Repository(new YourAPIProvider(options), new Factory());

The following can also be easily achieved with dependency injection using tramway-core-dependency-injector.

Note that not all of the Provider's core functions will be available at this time but here's a rundown of what you have.

Exposed Methods with this Library

Provider

| Function | Availability | | ----- | ----- | | getOne(id: any) | Available | | getMany(ids: any[]) | Available | | get() | Available | | find(conditions: Object, path: string) | Available, sends conditions object as query string | | has(id: any) | Available, but relies on the endpoint supporting HEAD http method. | | hasThese(ids : any[]) | Available, but relies on the endpoint supporting HEAD http method. | | count(conditions: any) | Not yet available | | create(item: Entity/Object) | Available | | update(id: any, item: Entity/Object) | Available | | delete(id: any) | Available | | deleteMany(ids : any[]) | Available | | query(query: string/Object, values: Object) | Not available, use findItems when available |

Repository

| Function | Usaability | | --- | --- | | exists(id: any) | Usable as long as API utilizes HEAD method | | getOne(id: any) | Usable | | get() | Usable | | create(entity: Entity) | Usable | | update(entity: Entity) | Usable | | delete(id: any) | Usable | | find(condtions: string/Object) | Not yet Usable | | getMany(ids: any[]) | Usable | | count(conditions) | Not yet Usable |

Services

The API suite provides a new ServerIPResolverService to get the IP address of the host machine.

To use it, import the class and use the static getIp method.

import {services} from 'tramway-connection-rest-api`;
let {ServerIPResolverService} = services;

To use it:

let ip = ServerIPResolverService.getIp();