Best of REST APIAugust 2022

  1. 1
    Article
    Avatar of hashnodeHashnode·4y

    I made a Discord bot using JavaScript in 4days!

    Fueler is a new age portfolio tool that helps skilled individuals prove themselves by showcasing their work. It just takes 30 seconds to setup your profile on Fueler and its totally free. The idea came when I discovered slash commands in discord and here I could easily categorize them inside slash commands.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    ... in JavaScript – the Three Dots Operator in JS

    The three dots operator in JavaScript is one of the significant updates that was shipped with ES6. It helps you achieve many things that previously required many lines of code, unfamiliar syntax, and more. We will go through some examples to show possible use cases. We can also concatenate objects similarly to how we did arrays with the spread operator. The rest operator allows you to combine any number of arguments into an array and then do whatever you like. It uses an array to represent an infinite number of options. It is a good representation.

  3. 3
    Article
    Avatar of awstipAWS Tip·4y

    Build a Visual Serverless NodeJS CRUD API with MongoDB (or steal mine)

    The end result of this API will be something like the picture below. Some of these nodes are composites I am using two collections but you can change this logic to only have one. If you’ve added them you can now Save and then Run the application. This may take a minute or two.

  4. 4
    Article
    Avatar of hashnodeHashnode·4y

    Building an Event-Driven Architecture at Hashnode.

    This is the first post of the series: Building an Event-Driven-Architecture at Hashnode. The stack will consist of: Amazon EventBridge Amazon Lambda Amazon SQS.

  5. 5
    Article
    Avatar of hashnodeHashnode·4y

    Fullstack App built with ReactJS, NodeJS, ExpressJs and Redis-OM

    Fullstack App built with ReactJS, NodeJS, ExpressJs and Redis-OM Overview. We'll be building a Fullstack app with Redis Database for storing the data. Redis is an in-memory key-value store that is often used as a cache to make traditional databases faster. It gives us the methods to read, write and remove a specific Entity and lastly. A Repository is the main interface into Redis OM.

  6. 6
    Article
    Avatar of rpythonReal Python·4y

    Building a URL Shortener With FastAPI and Python – Real Python

    A URL shortener reduces the number of characters in a URL, making it easier to read, remember, and share. By following this step-by-step project, you’ll build a URLShortener with Python and FastAPI.

  7. 7
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    How to Remove an Element from a JavaScript Array – Removing a Specific Item in JS

    The second half of the article will list methods to remove an element from an array without mutating the original one. The first use of slice will create an array from the beginning to just before the element you want to remove to the end of the array. The second use ofslice creates anarray from after the element that you want the element to be removed. The two arrays are concatenated together with concat to form an array.

  8. 8
    Article
    Avatar of devgeniusDev Genius·4y

    Building a Go REST client in 2022

    The introduction of Generics in Go simplifies the REST API integration. Building a Go REST client in 2022 will be a type-safe client with Go.com, from unsplash It’s 2022. So, I’ll walk through those 2 processes. I'll also need to convert my type into a byte array. The next step will be to tackle posting data.