Skip to content

Releases: NicmeisteR/Node-Essentials

Version 2.0.6

13 Apr 11:43
Compare
Choose a tag to compare

Added the ability to executeDelete Rest requests.

Version 2.0.5

17 Mar 08:22
Compare
Choose a tag to compare

Fixed package.json typo.

Version 2.0.4

04 Mar 10:32
Compare
Choose a tag to compare

Changelogs

  • Fixed Auto Deploy.

Version 2

04 Mar 10:23
Compare
Choose a tag to compare

Changelog

  • Re-Wrote the whole library.
  • Implemented new Methods.
  • Now Supports additional REST Requests: Get, Post, Put.

Async API Calls

18 Dec 08:18
Compare
Choose a tag to compare

Changelog

  • The "get" function now handles calls asynchronously
    async function get() {
    try {
        test = await node.get(
            "https://apiurlhere.com/",["api key desc", "api key value"])
            .then(console.log("done"));
    }
    finally {
        console.log(test);
    }
};
  • Documentation has been updated and examples have been added.

Fixed Infinite Test Loop

17 Dec 19:03
Compare
Choose a tag to compare

Fixed Infinite Test Loop from express when doing continuous integration.

Added Express-JS

17 Dec 18:56
Compare
Choose a tag to compare

Current Tools

  • writeToFile - Writes anything passed through to storage as any file.
  • express - Set-up a express-js server on the specified port and directory.
  • get - Simple REST "Get Request.

Initial Release

17 Dec 17:13
Compare
Choose a tag to compare
v1.2.0

Added Deploy Bat

Added CI

17 Dec 16:49
Compare
Choose a tag to compare
v1.1.0

Added instructions.