Releases: NicmeisteR/Node-Essentials
Releases · NicmeisteR/Node-Essentials
Version 2.0.6
Added the ability to executeDelete Rest requests.
Version 2.0.5
Fixed package.json typo.
Version 2.0.4
Changelogs
- Fixed Auto Deploy.
Version 2
Changelog
- Re-Wrote the whole library.
- Implemented new Methods.
- Now Supports additional REST Requests: Get, Post, Put.
Async API Calls
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
Fixed Infinite Test Loop from express when doing continuous integration.
Added Express-JS
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
v1.2.0 Added Deploy Bat
Added CI
v1.1.0 Added instructions.