Welcome to the EdgeOne developer hub

Welcome to the EdgeOne developer hub

제품으로 배우기

가속가속
보안보안
서버리스서버리스
미디어미디어
가속

빠르기 그지없음

특히 아시아에서의 사용자 액세스에 우수한 글로벌 네트워크 성능

기능

  • feature글로벌 CDN POP
  • feature글로벌 네트워크 대역폭
  • feature지능 가속

Edge Functions으로 구축

  • 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());
});