snippets
All things related to "snippets"
-
8/19/2024 Steam's API Did you know Steam has a public API? I didn't. Let's check it out. -
12/3/2020 Using Next.js API routes Next.JS comes with a useful feature out of the box, api routes. Files created in the `pages/api/` folder are treated as an endpoint rather than a page. Instead of exporting a React component to display your UI, you can export a function returning, say, a JSON response.