Kun

Kun

IT学徒、技术民工、斜杠青年,机器人爱好者、摄影爱好 PS、PR、LR、达芬奇潜在学习者


共 212 篇文章


盘点知名公司的那些开源项目  

Vercel

Next.js

SWR(20k)

swr是前端获取数据的工具包,使用起来和useRequest差不多

import useSWR from 'swr'

function Profile() {
  const { data, error } = useSWR('/api/user', fetcher)

  if (error) return <div>failed to load</div>
  if (!data) return <div>loading...</div>
  return <div>hello {data.name}!</div>
}

vercel

turborepo

HYPERS

嗨普智能

rsuite

Poimandres

zustand

Tencent

Meituan

CSRF攻击:https://tech.meituan.com/2018/10/11/fe-security-csrf.html

XSS攻击:https://juejin.cn/post/6971374111884836871#heading-10

如果你觉得我的文章对你有帮助的话,希望可以推荐和交流一下。欢迎關注和 Star 本博客或者关注我的 Github