Last active
May 20, 2024 14:46
-
-
Save pezcode/d51926bdbadcbd4f22f5a5d2fb8e0394 to your computer and use it in GitHub Desktop.
Local HTTP server with COEP+COOP enabled for SharedArrayBuffer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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