web-developer-resources icon indicating copy to clipboard operation
web-developer-resources copied to clipboard

A list of web full stack resources and summarize.

Results 106 web-developer-resources issues
Sort by recently updated
recently updated
newest added

## [Deskreen](https://deskreen.com/) 一个屏幕分享软件,可以把桌面电脑的屏幕(Windows、MacOS、Linux)分享到局域网内的任意设备,只要对方有浏览器就可以接收。 ![image](https://user-images.githubusercontent.com/26923747/226111665-c5c2f8e7-f6d2-4563-b77e-019893a81345.png)

系统工具
自动化

## [Float Toy](https://evanw.github.io/float-toy/) 这个网页可视化展示浮点数的二进制构成,包括半精度、单精度和双精度。它的特点是,每个二进制位只要点击就变成相反值(0变成1,或者1变成0)。 Repo https://github.com/evanw/float-toy

Math
可视化

## [Ambient Chaos](https://neal.fun/ambient-chaos/) 一个网页的背景音生成器,提供20多种声音,比如风声、雨声、火车站、教堂钟声等。每种都可以调节音量,还可以选择声音进行合成。 ![image](https://user-images.githubusercontent.com/26923747/217876757-9f9bc470-8534-4576-8775-5f3a81d1b5ee.png)

Life

## [giscus](https://giscus.app/) 一个基于 GitHub Discussions(讨论区) 的网站评论系统,可以插在自己的网页中,供用户发表评论。无需数据库,全部数据存在 GitHub 仓库的 Discussions 中。

自动化

## [Satori](https://github.com/vercel/satori) 这个 JS 库可以把 HTML 和 CSS 代码转为 SVG 图形,很适合为组件生成缩略图,在线[示例](https://og-playground.vercel.app/)。源于 vercel [OG](https://ogp.me/) 图像生成器,底层实现用的是 [Yoga](https://github.com/facebook/yoga) 跨平台布局引擎,[WebAssembly](https://github.com/shuding/yoga-wasm-web) 浏览器运行时。

Web开发

## [minisearch](https://github.com/lucaong/minisearch) 一个 JS 的全文搜索库,支持模糊搜索等很多功能。 ```js // A collection of documents for our examples const documents = [ { id: 1, title: 'Moby Dick', text: 'Call me Ishmael. Some years...

Web开发