Node.js - Loopback support


This section describes support for the Node.js Loopback framework.

Supported APIs from @loopback/rest:

  • get, post, put, del and patch decorators
  • RestApplication.route

For instance the analysis of the following source code will lead to the creation of NodeJS Get Operation named ping/ with a callLink to the ping Method:

import {get} from '@loopback/rest';

class FooClass{
  @get('/ping', {
    responses: {
      '200': PING_RESPONSE,
    },
  })
  ping(){}
}