Read the full tutorial here.
Requirements:
- Install Docker Desktop
- Create an AWS account
| // Configuration object for the search | |
| const searchConfig = { | |
| searchCriteria: { user: { id: true, email: true } }, // What we're looking for | |
| maxDepth: 50, // How deep to search in the tree | |
| stopAfterFirst: false, // Whether to stop after finding the first match | |
| searchPaths: ["memoizedProps", "memoizedState"], // Where to look in each node | |
| mainSelector: "#__next", // The root element of our React app | |
| callback: (matchingObjects) => { | |
| matchingObjects.forEach(({ matchingObject, fiberNode }) => { | |
| console.log("Found matching object:", matchingObject); |
Read the full tutorial here.
Requirements:
| package main | |
| import ( | |
| "crypto/aes" | |
| "crypto/cipher" | |
| "crypto/rand" | |
| "encoding/base64" | |
| "fmt" | |
| "io" | |
| ) |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| margin: 0px; | |
| padding: 0px; | |
| } | |
| </style> | |
| </head> |