Skip to content

Releases: resttjs/restt

Release (Minor) - v0.1.8

30 Aug 15:38
Compare
Choose a tag to compare
  • Added support for response types on Actions (json (default), text, buffer)

Usage:

// Create an Action for sending an email
const sendMailAction = new Action({

  // Define the action name
  name: 'sendEmail',

  // Define the endpoint
  endpoint: `/mail/send`,

  // Define the method type
  method: 'POST',

  // Define the action response type to be text
  type: 'text'
});

- Added support for `text` and `buffer` to `Request` (required for response types)

Release (Patch) - v0.1.7

30 Aug 14:00
Compare
Choose a tag to compare
  • Patched bugs in Actions when working with an Array as the payload
  • Added better support for URL's using RegExp

Stable Release - v0.1.0

19 Feb 05:19
Compare
Choose a tag to compare

Initial Stable Release of Restt

  • Added official website (https://restt.io)
  • Added tapping support for Restt-CLI for smarter code deployment and future plugins