Skip to content

Releases: NicmeisteR/Node-Essentials

Version 2.0.6

Choose a tag to compare

@NicmeisteR NicmeisteR released this 13 Apr 11:43

Added the ability to executeDelete Rest requests.

Version 2.0.5

Choose a tag to compare

@NicmeisteR NicmeisteR released this 17 Mar 08:22

Fixed package.json typo.

Version 2.0.4

Choose a tag to compare

@NicmeisteR NicmeisteR released this 04 Mar 10:32

Changelogs

  • Fixed Auto Deploy.

Version 2

Choose a tag to compare

@NicmeisteR NicmeisteR released this 04 Mar 10:23

Changelog

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

Async API Calls

Choose a tag to compare

@NicmeisteR NicmeisteR released this 18 Dec 08:18

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

Choose a tag to compare

@NicmeisteR NicmeisteR released this 17 Dec 19:03

Fixed Infinite Test Loop from express when doing continuous integration.

Added Express-JS

Choose a tag to compare

@NicmeisteR NicmeisteR released this 17 Dec 18:56

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

Choose a tag to compare

@NicmeisteR NicmeisteR released this 17 Dec 17:13
v1.2.0

Added Deploy Bat

Added CI

Choose a tag to compare

@NicmeisteR NicmeisteR released this 17 Dec 16:49
v1.1.0

Added instructions.