blog.logrocket.com
Resources curated from this publisher and indexed across appsec.fyi topic pages. Last item added: 2026-04-17.
| Date Added | Resource | Excerpt |
|---|---|---|
| 2026-04-17 2026 | Securing GraphQL API endpoints using rate limits and depth limits (LogRocket)GraphQL | Library implementing rate and depth limiting for Node.js GraphQL APIs. This library leverages Redis for storing rate-limiting data and offers directives to apply limits directly within your GraphQL schema. It supports identifying clients by IP address or other unique identifiers, customizes error messages when limits are exceeded, and integrates with GraphQL servers like GraphQL Yoga and Apollo. |
| 2025-08-14 2025 | https://blog.logrocket.com/whats-new-in-go-1-16/ | Library detailing changes in Go 1.16, including default module-aware mode, Apple Silicon support via `GOOS=darwin` and `GOARCH=arm64`, and native static asset embedding using the `embed` package. It also covers the deprecation of the `io/ioutil` package, with functions now located in `io` and `os`, and the introduction of the `retract` directive in `go.mod` files. |
| 2025-08-14 2025 | Creating a web crawler in Go with Colly - LogRocket Blog | Library for building web crawlers and scrapers in Go using the Colly package. This resource demonstrates how to leverage Colly's `Collector` component to configure network requests, handle different stages of the crawling lifecycle with callbacks like `OnRequest` and `OnHTML`, and extract structured data from target websites like IMDB. It covers techniques for recursively visiting pages, handling individual item details, and structuring extracted data into Go structs, with an example focused on scraping celebrity birthdays. |
| 2021-04-07 2021 | Creating a web crawler in Go with Colly - LogRocket Blog | Library for building web scrapers and crawlers in Go, utilizing the `colly` package which leverages Go's `net/HTTP` and `goquery` for DOM manipulation. This resource demonstrates creating a collector to systematically browse and extract data from websites like IMDB, focusing on targeted element selection using CSS selectors and handling asynchronous requests and pagination. It includes code for cloning collectors, attaching callbacks like `OnRequest` and `OnHTML`, defining data structures for extracted information, and implementing command-line flag support for dynamic date-based scraping. |
| 2021-02-25 2021 | What's new in Go 1.16 - LogRocket Blog | Library detailing Go 1.16 enhancements, including native Apple silicon support, the new `embed` package for static asset embedding via `//go:embed`, and changes to module management with `go.mod` and `go.sum` file handling. It also covers the deprecation of the `io/ioutil` package and migration to `io` and `os` for functionalities like `ReadAll`. |