Welcome to the EdgeOne developer hub

Welcome to the EdgeOne developer hub

按产品学习

加速加速
安全安全
无服务器无服务器
媒体媒体
加速

闪电般快速

在全球范围内提供卓越的网络性能,尤其为亚洲用户提供更优的访问体验。

产品特性

  • feature全球CDN PoP
  • feature全球网络带宽
  • feature智能加速

使用Edge函数构建

  • Return HTML
  • Return JSON
  • Request Header Authentication
  • Streaming Response
  • Image Adaptive WebP
  • Referer-based hotlink protection
  • HMAC Digital Signature
  • Rename downloaded files
const HTML_DATA = `
<html>
  <body>
    <h1>Hello World</h1>
    <p>This markup was generated by TencentCloud Edge Functions.</p>
    <a href="https://edgeone.ai">TencentCloud EdgeOne</a>
  </body>
</html>
`;

async function handleRequest() {
  return new Response(HTML_DATA, {
    headers: {
      'content-type': 'text/html; charset=UTF-8',
    },
  });
}

addEventListener('fetch', event => {
  event.respondWith(handleRequest());
});