Skip to content

Instantly share code, notes, and snippets.

@pezcode
Last active January 17, 2024 14:56
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pezcode/d51926bdbadcbd4f22f5a5d2fb8e0394 to your computer and use it in GitHub Desktop.
Save pezcode/d51926bdbadcbd4f22f5a5d2fb8e0394 to your computer and use it in GitHub Desktop.
Local HTTP server with COEP+COOP enabled for SharedArrayBuffer
# Based on:
# https://stackoverflow.com/a/21957017
# https://gist.github.com/HaiyangXu/ec88cbdce3cdbac7b8d5
from http.server import SimpleHTTPRequestHandler
import socketserver
import sys
class Handler(SimpleHTTPRequestHandler):
extensions_map = {
'': 'application/octet-stream',
'.css': 'text/css',
'.html': 'text/html',
'.jpg': 'image/jpg',
'.js': 'application/x-javascript',
'.json': 'application/json',
'.manifest': 'text/cache-manifest',
'.png': 'image/png',
'.wasm': 'application/wasm',
'.xml': 'application/xml',
}
def end_headers(self):
self.send_header('Access-Control-Allow-Origin', '*')
self.send_header('Cross-Origin-Embedder-Policy', 'require-corp')
self.send_header('Cross-Origin-Opener-Policy', 'same-origin')
SimpleHTTPRequestHandler.end_headers(self)
if __name__ == '__main__':
port = int(sys.argv[1]) if len(sys.argv) > 1 else 8000
with socketserver.TCPServer(("localhost", port), Handler) as httpd:
print("Serving on port", port)
httpd.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment