1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
# Supported Packages
On each commit, Circle CI automatically compiles all supported packages with GopherJS and runs their tests:
[](https://circleci.com/gh/gopherjs/gopherjs)
Name | Supported | Comment
------------------ | ------------ | ----------------------------------------------------------------------------------
archive | |
-- tar | ✅ yes |
-- zip | ✅ yes |
bufio | ✅ yes |
builtin | ✅ yes |
bytes | ✅ yes |
compress | |
-- bzip2 | ✅ yes |
-- flate | ✅ yes |
-- gzip | ✅ yes |
-- lzw | ✅ yes |
-- zlib | ✅ yes |
container | |
-- heap | ✅ yes |
-- list | ✅ yes |
-- ring | ✅ yes |
crypto | |
-- aes | ✅ yes |
-- cipher | ✅ yes |
-- des | ✅ yes |
-- dsa | ✅ yes |
-- ecdsa | ✅ yes |
-- elliptic | ✅ yes |
-- hmac | ✅ yes |
-- md5 | ✅ yes |
-- rand | ✅ yes |
-- rc4 | ✅ yes |
-- rsa | ✅ yes |
-- sha1 | ✅ yes |
-- sha256 | ✅ yes |
-- sha512 | ✅ yes |
-- subtle | ✅ yes |
-- tls | ❌ no |
-- x509 | ✅ yes |
-- -- pkix | ✅ yes |
database | |
-- sql | ✅ yes |
-- -- driver | ✅ yes |
debug | |
-- dwarf | ✅ yes |
-- elf | ✅ yes |
-- gosym | ☑️ partially | on binaries generated by gc
-- macho | ✅ yes |
-- pe | ✅ yes |
encoding | |
-- ascii85 | ✅ yes |
-- asn1 | ✅ yes |
-- base32 | ✅ yes |
-- base64 | ✅ yes |
-- binary | ✅ yes |
-- csv | ✅ yes |
-- gob | ✅ yes |
-- hex | ✅ yes |
-- json | ✅ yes |
-- pem | ✅ yes |
-- xml | ✅ yes |
errors | ✅ yes |
expvar | ✅ yes |
flag | ✅ yes |
fmt | ✅ yes |
go | |
-- ast | ✅ yes |
-- build | ❌ no |
-- constant | ✅ yes |
-- doc | ✅ yes |
-- format | ✅ yes |
-- importer | ❌ no |
-- parser | ✅ yes |
-- printer | ✅ yes |
-- scanner | ✅ yes |
-- token | ✅ yes |
-- types | ❌ no |
hash | |
-- adler32 | ✅ yes |
-- crc32 | ✅ yes |
-- crc64 | ✅ yes |
-- fnv | ✅ yes |
html | ✅ yes |
-- template | ✅ yes |
image | ✅ yes |
-- color | ✅ yes |
-- -- palette | ✅ yes |
-- draw | ✅ yes |
-- gif | ✅ yes |
-- jpeg | ✅ yes |
-- png | ✅ yes |
index | |
-- suffixarray | ✅ yes |
io | ✅ yes |
-- ioutil | ✅ yes |
log | ✅ yes |
-- syslog | ❌ no |
math | ✅ yes |
-- big | ✅ yes |
-- bits | ✅ yes |
-- cmplx | ✅ yes |
-- rand | ✅ yes |
mime | ✅ yes |
-- multipart | ✅ yes |
-- quotedprintable | ✅ yes |
net | ❌ no |
-- http | ☑️ partially | client only, emulated via Fetch/XMLHttpRequest APIs;<br>node.js requires polyfill
-- -- cgi | ❌ no |
-- -- cookiejar | ✅ yes |
-- -- fcgi | ✅ yes |
-- -- httptest | ☑️ partially |
-- -- httputil | ☑️ partially |
-- -- pprof | ❌ no |
-- mail | ✅ yes |
-- rpc | ☑️ partially | data structures only (no net)
-- -- jsonrpc | ✅ yes |
-- smtp | ☑️ partially | data structures only (no net)
-- textproto | ✅ yes |
-- url | ✅ yes |
os | ☑️ partially | node.js only
-- exec | ☑️ partially | node.js only
-- signal | ☑️ partially | node.js only
-- user | ☑️ partially | node.js only
path | ✅ yes |
-- filepath | ✅ yes |
reflect | ✅ yes | except StructOf (pending)
regexp | ✅ yes |
-- syntax | ✅ yes |
runtime | ☑️ partially | SetMutexProfileFraction, SetFinalizer unsupported
-- cgo | ❌ no |
-- debug | ❌ no |
-- pprof | ❌ no |
-- race | ❌ no |
-- trace | ❌ no |
sort | ✅ yes |
strconv | ✅ yes |
strings | ✅ yes |
sync | ✅ yes |
-- atomic | ✅ yes |
syscall | ☑️ partially | node.js only
testing | ✅ yes |
-- iotest | ✅ yes |
-- quick | ✅ yes |
text | |
-- scanner | ✅ yes |
-- tabwriter | ✅ yes |
-- template | ✅ yes |
-- -- parse | ✅ yes |
time | ✅ yes | UTC and Local only (see [issue](https://github.com/gopherjs/gopherjs/issues/64))
unicode | ✅ yes |
-- utf16 | ✅ yes |
-- utf8 | ✅ yes |
unsafe | ❌ no |
|