The reconcile package is used for DOM reconcilation in Isomorphic Go web applications.
Wirecog 88f8e4fc9a Added vendor directory containing HTML parser 6 years ago
..
.gitignore Added vendor directory containing HTML parser 6 years ago
Makefile Added vendor directory containing HTML parser 6 years ago
README Added vendor directory containing HTML parser 6 years ago
h2demo.go Added vendor directory containing HTML parser 6 years ago
launch.go Added vendor directory containing HTML parser 6 years ago
rootCA.key Added vendor directory containing HTML parser 6 years ago
rootCA.pem Added vendor directory containing HTML parser 6 years ago
rootCA.srl Added vendor directory containing HTML parser 6 years ago
server.crt Added vendor directory containing HTML parser 6 years ago
server.key Added vendor directory containing HTML parser 6 years ago
tmpl.go Added vendor directory containing HTML parser 6 years ago

README


Client:
-- Firefox nightly with about:config network.http.spdy.enabled.http2draft set true
-- Chrome: go to chrome://flags/#enable-spdy4, save and restart (button at bottom)

Make CA:
$ openssl genrsa -out rootCA.key 2048
$ openssl req -x509 -new -nodes -key rootCA.key -days 1024 -out rootCA.pem
... install that to Firefox

Make cert:
$ openssl genrsa -out server.key 2048
$ openssl req -new -key server.key -out server.csr
$ openssl x509 -req -in server.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out server.crt -days 500