ch
Feedback
Web Development

Web Development

前往频道在 Telegram

Web development learning path Frontend and backend resources. HTML, CSS, JavaScript, React, APIs and project ideas. Join 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist

显示更多
4 330
订阅者
+524 小时
+137
+5930
吸引订阅者
八月 '26
八月 '26
+150
在0个频道中
七月 '26
+150
在0个频道中
Get PRO
六月 '26
+109
在0个频道中
Get PRO
五月 '26
+114
在1个频道中
Get PRO
四月 '26
+155
在1个频道中
Get PRO
三月 '26
+84
在0个频道中
Get PRO
二月 '26
+81
在0个频道中
Get PRO
一月 '26
+104
在9个频道中
Get PRO
十二月 '25
+76
在0个频道中
Get PRO
十一月 '25
+92
在1个频道中
Get PRO
十月 '25
+82
在0个频道中
Get PRO
九月 '25
+71
在0个频道中
Get PRO
八月 '25
+61
在0个频道中
Get PRO
七月 '25
+91
在0个频道中
Get PRO
六月 '25
+85
在0个频道中
Get PRO
五月 '25
+78
在0个频道中
Get PRO
四月 '25
+81
在0个频道中
Get PRO
三月 '25
+89
在1个频道中
Get PRO
二月 '25
+120
在0个频道中
Get PRO
一月 '25
+279
在1个频道中
Get PRO
十二月 '24
+319
在1个频道中
Get PRO
十一月 '24
+133
在0个频道中
Get PRO
十月 '24
+180
在1个频道中
Get PRO
九月 '24
+117
在2个频道中
Get PRO
八月 '24
+129
在1个频道中
Get PRO
七月 '24
+148
在0个频道中
Get PRO
六月 '24
+181
在0个频道中
Get PRO
五月 '24
+175
在1个频道中
Get PRO
四月 '24
+216
在0个频道中
Get PRO
三月 '24
+300
在0个频道中
Get PRO
二月 '24
+422
在2个频道中
Get PRO
一月 '24
+387
在0个频道中
Get PRO
十二月 '23
+342
在1个频道中
Get PRO
十一月 '23
+9
在0个频道中
Get PRO
十月 '23
+15
在0个频道中
Get PRO
九月 '23
+549
在0个频道中
日期
订阅者增长
提及
频道
26 八月+5
25 八月+5
24 八月+5
23 八月+5
22 八月+3
21 八月+3
20 八月+8
19 八月+4
18 八月+5
17 八月+3
16 八月+2
15 八月+7
14 八月+13
13 八月+4
12 八月+4
11 八月+4
10 八月+5
09 八月+4
08 八月+6
07 八月+31
06 八月+3
05 八月+2
04 八月+4
03 八月+4
02 八月+3
01 八月+8
频道帖子
What is Next.js Middleware❔
+6
What is Next.js Middleware

2
Top API Tools For Different Purposes
Top API Tools For Different Purposes
211
3
Why React Hydration Exists When a server sends HTML to your browser, the page already looks complete before any JavaScript fi
Why React Hydration Exists When a server sends HTML to your browser, the page already looks complete before any JavaScript finishes loading. But looks can be misleading. Buttons don't respond. Forms don't submit. Dropdowns don't open. Hydration is the process where React attaches JavaScript to that existing HTML, making it interactive instead of rebuilding the page from scratch. This is also why JavaScript bundle size matters so much. The browser can't hydrate components until it has downloaded, parsed, and executed their JavaScript. That's why modern frameworks push more work to the server. Not because JavaScript is bad, but because sending less of it usually means users can interact with the page sooner.
235
4
❌ Stop Returning 200 One habit that makes debugging APIs much harder is returning HTTP 200 OK for every request. An HTTP status code tells the client what happened before it even reads the response body. Examples: 200 → Success 201 → Resource created 400 → Client sent invalid data 401 → Authentication required 403 → Authenticated, but not allowed 404 → Resource doesn't exist 500 → Server failed unexpectedly If every response is 200, frontend developers have to inspect every response body just to know whether something failed. Let HTTP do its job. That's what it was designed for.
298
5
What HTTP status code indicates a resource was not found?
291
6
TypeScript Mapped Types in API Responses+6
TypeScript Mapped Types in API Responses
316
7
📖 Read The Source When you're stuck with a library, stop searching YouTube after 20 minutes. Open its documentation. If that doesn't explain it, read the source code. You don't need to understand every file. Find the function you're calling and follow the execution. You'll often discover hidden options, edge cases, or implementation details that never made it into the docs. Reading source code is one of the fastest ways to become a stronger developer.
328
8
Which SQL clause is used to filter groups after a GROUP BY?
308
9
The Truth About CORS CORS (Cross-Origin Resource Sharing) is a browser security mechanism that decides whether one website is
The Truth About CORS CORS (Cross-Origin Resource Sharing) is a browser security mechanism that decides whether one website is allowed to request resources from another. Suppose your frontend runs on: http://localhost:5173 Your API runs on: http://localhost:3000 Same computer. Different ports. That makes them different origins. Your browser blocks the request because the API never explicitly allowed requests from that origin. "But it works in Postman..." Of course it does. Postman isn't a browser. It doesn't enforce browser security rules. If Postman works but your browser doesn't, the problem usually isn't your API logic. It's your server's CORS configuration.
332
10
What does the acronym DOM stand for?
291
11
VS Code Extensions You Need
VS Code Extensions You Need
403
12
🚨Someone open-sourced the Kage landing page and the Three.js skills behind it. Every section scrolls through a 3D world and
🚨Someone open-sourced the Kage landing page and the Three.js skills behind it. Every section scrolls through a 3D world and the whole thing is under 1MB of Three.js and code, 3MB with high quality images. For a fully 3D scroll experience that's surprisingly lean. Three skills included: build-threejs-scroll-worlds, falling-leaves and pointer-trail-emitter. All open source on GitHub. 🔗Check it out: https://github.com/MengTo/kage
401
13
Which method creates a new array without modifying the original?
308
14
Next.js SSG (Static Site Generation)+6
Next.js SSG (Static Site Generation)
455
15
🎨 Refero Styles Refero Styles is a curated gallery of production UI designs organized by visual style rather than by company. It makes it easy to explore layouts, components, and design patterns used across real applications, all from a single place. This might came in handy when designing web or mobile interfaces. 🔗 https://styles.refero.design/
351
16
🧠 20 GitHub Repos That Expose What Tutorials Never Taught You You can build a to-do app in five frameworks and still not know how a database index works. These repos close that gap. 1. computer-science A full self-taught CS degree curriculum, for anyone who skipped college or forgot what they learned. 2. the-book-of-secret-knowledge A huge stash of tools, tricks, and one-liners that experienced devs pick up over years, all in one place. 3. system-design-primer Breaks down how the apps you use every day handle millions of users behind the scenes. 4. build-your-own-x Walks you through building your own Git, Docker, or database, so the tools you use daily stop feeling like black boxes. 5. linux-insides A gentle, detailed walkthrough of how the Linux kernel actually works under the hood. 6. professional-programming Covers everything tutorials skip: engineering practices, architecture, and how real teams ship code. 7. project-based-learning A list of real projects to build, for when tutorial hell starts feeling too comfortable. 8. you-dont-know-js JavaScript fundamentals most developers using JS every day have never actually learned. 9. CS-Notes Clear, structured notes on algorithms, operating systems, networking, and databases in one repo. 10. the-algorithms Classic algorithms and data structures implemented in almost every language, good for understanding rather than memorizing. 11. free-programming-books Thousands of free books covering the fundamentals no bootcamp has time for. 12. developer-roadmap Visual maps of what "knowing" a certain stack really involves, useful when you're not sure what you're missing. 13. system-design-101 Visual explanations of system design concepts, built for people who learn by seeing. 14. coding-interview-university A study plan built around filling CS gaps, which happens to also prepare you for interviews. 15. awesome-selfhosted A list of services you can run yourself, good for anyone who's only ever read about infrastructure. 16. realworld The same production app built in dozens of frameworks, so you can compare how they actually differ. 17. public-apis Free APIs to build against real, messy data instead of another seeded dummy database. 18. first-contributions A guided first pull request, for anyone too intimidated to touch someone else's codebase. 19. awesome The master list of curated resources. When you don't know what you don't know, start here. 20. 30-seconds-of-code Short, sharp snippets that teach patterns instead of just giving you copy-paste answers. ➖➖➖➖➖➖➖➖➖➖➖➖➖➖ 👉 Join @bigdataspecialist for more 👈
277
17
Worm Compromises Over 1,300 npm Packages Including Popular Caching Tools A self-spreading worm called ChainDrop has compromis
Worm Compromises Over 1,300 npm Packages Including Popular Caching Tools A self-spreading worm called ChainDrop has compromised more than 1,300 npm packages, including popular ones like Keyv, Cacheable, and flat-cache. The packages together have around 2 billion monthly downloads. The attack started after a maintainer’s GitHub account was compromised. The malware steals credentials and spreads by publishing new malicious versions. Developers are urged to check their dependencies and rotate any exposed credentials.
277
18
Golang for DevOps Roadmap.pdf
271
19
📘 The Little ASP.NET Core Book ✍️ Authors: Nate Barbettini 🔗 Read Online #ASP.NET ──────────────────── 👉 @free_programming
📘 The Little ASP.NET Core Book ✍️ Authors: Nate Barbettini 🔗 Read Online #ASP.NET ──────────────────── 👉 @free_programming_books_bds 👈
303
20
Which practice helps developers detect integration issues before deploying to production?
312