LATEST TRANSMISSIONS
ENCRYPTED // PUBLIC KEY DETECTED
Building an MCP Server with Authentication
A step-by-step tutorial on creating a Model Context Protocol (MCP) server with custom API key authentication and authorization.
Type Declarations for External Global Objects in TypeScript React
Guide on how to declare types for external global objects in TypeScript React projects.
TSTypeGen GPT: The GPTs to Generate TypeScript Type with Given Fields
Provide your field names to TSTypeGen, and it will automatically generate TypeScript type definitions with helpful comments. If you include descriptions, they'll be used in the comments; otherwise, TSTypeGen will intelligently create descriptive annotations for you.
Unlocking User Data in TypeScript FeathersJS V5 Custom Services
Facing the Feathery Challenge While working with FeathersJS V5 and TypeScript, I have encountered a peculiar challenge: accessing the user object within custom services. While authentication mechanism…
Geo Check In on the Browser
Browser provides location API to get the location of the user. So it is possible to do geo check-in in a web application. Here are some fundamental codes to do so: 1. Get the location of the user /** …
... Differs from Already Included ... Only in Casing
Got a warning in VS Code saying: ... Differs from Already Included ... Only in Casing This is caused by the framework I'm using, It actually includes the same file twice, but with different casing. To…
React Component Library With TypeScript
Here's a guide to create a React component library with TypeScript given by ChatGPT. To create a TypeScript React component library project, you can follow these steps: Create a new directory for yo…
Intellij IDE Does Not Support Bundler Module Resolution Yet
I created a new UmiJS project today, getting a never seen error from Intellij IDEA. Property 'div' does not exist on type 'JSX.IntrinsicElements'. This error is intriguing, how could a div not exist…
Create a CLI with Node.js
Learn to run Node.js files directly, and make your Node.js program accessible globally as a command.