Juho Viitasalojiv-e.hashnode.dev·Jan 9, 2023How to add validation to a custom API in Strapi?Vivek Agarwal wrote a great tutorial for adding custom API endpoints in Strapi. It didn't include any tips for validating the request input. In this tutorial, I will show how to create a pleasant user-friendly API validation experience in Strapi 4. S...Discuss·1.1K readsStrapi
chenchunaidu maddinenieleven12.hashnode.dev·Dec 29, 2022Deploying your node backend [Express / Koa] in AWS LambdaGitHub link: https://github.com/chenchunaidu/koa-lambda-template Why do we need to deploy your node backend application on AWS Lambda? There are many ready-made options like vercel, netlify to deploy frontend applications on the cloud. We also have f...Discuss·2 likes·199 readsAWS
Rakha Kanz Kautsarblog.rakha.dev·Nov 25, 2020Testing Koa Server with JestExpress has long been the de facto standard and mainstream pick when you start a project in Node.js. But recently (well, not that recent), the team behind Express has started a new, shiny library called Koa.js with a different phillosophy in mind. W...Discuss·9 likes·324 readsKoaJS
Tejas Kaneriyatejaskaneriya.hashnode.dev·Sep 16, 2020When to use these Nodejs frameworks? Express, Koa, Nest, Socket.io, Meteor.jsAccording to the Node.js web survey report 2018, Node.js has increased developer productivity by 68%, reduced development costs, and enhanced app performance to a great extent. This is a result of the successful adoption and deployment of node.js fra...Discuss·242 readsExpress.js
Travis Horntravishorn.com·Apr 25, 2019API Server with JWT AuthenticationIn this article, I’ll go over how to create an API server that signs and verifies JSON Web Tokens for authentication. Some of the technologies this server uses include Koa, JWTs, Knex, SQLite, and bcrypt. By the end of this article, we’ll have a ful...Discuss·2.8K readsJavaScript