go: mime: incorrect mime-type for .js files on windows 10 (text/plain instead of application/javascript)
What version of Go are you using (go version)?
$ go version go version go1.12.5 windows/amd64
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env)?
go env Output
$ go env set GOARCH=amd64 set GOBIN= set GOCACHE=C:\Users\kjk\AppData\Local\go-build set GOEXE=.exe set GOFLAGS= set GOHOSTARCH=amd64 set GOHOSTOS=windows set GOOS=windows set GOPATH=C:\Users\kjk\go set GOPROXY= set GORACE= set GOROOT=C:\Go set GOTMPDIR= set GOTOOLDIR=C:\Go\pkg\tool\windows_amd64 set GCCGO=gccgo set CC=gcc set CXX=g++ set CGO_ENABLED=1 set GOMOD=C:\Users\kjk\src\apps\offdocs\go.mod set CGO_CFLAGS=-g -O2 set CGO_CPPFLAGS= set CGO_CXXFLAGS=-g -O2 set CGO_FFLAGS=-g -O2 set CGO_LDFLAGS=-g -O2 set PKG_CONFIG=pkg-config set GOGCCFLAGS=-m64 -mthreads -fmessage-length=0 -fdebug-prefix-map=C:\Users\kjk\AppData\Local\Temp\go-build840166758=/tmp/go-build -gno-record-gcc-switches
What did you do?
Consider this program:
package main
import (
"fmt"
"mime"
)
func main() {
ct := mime.TypeByExtension(".js")
fmt.Printf("ct: %s\n", ct)
}
https://play.golang.org/p/JTVjWc9xMDE
What did you expect to see?
Mime-type for .js files should be application/javascript on all platforms.
What did you see instead?
On Linux it returns ct: application/javascript
On my latest Windows 10 it returns ct: text/plain; charset=utf-8
This also affects Content-Type returned by http.ServeFile() for .js files.
This is because in src\mime\type.go:
func initMime() {
if fn := testInitMime; fn != nil {
fn()
} else {
setMimeTypes(builtinTypesLower, builtinTypesLower)
osInitMime()
}
}
On Windows osInitMime() reads info for additional extensions from registry and over-writes mime-type for .js files.
Note: it’s possible this won’t repro on every version on Windows.
Reversing the initialization order should fix it:
osInitMime()
setMimeTypes(builtinTypesLower, builtinTypesLower)
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Reactions: 18
- Comments: 26 (6 by maintainers)
Hi I think that this is caused by the registry settings in windows 10.
If you are looking for a temporary solution, please import the following registry items:
IMHO this one is caused by system, but not golang itself.
Did I miss something?
I had the same problem and I borrowed dvaldivia solution. If you don’t want to change the Windows registry, you can modify it like this in code:
Unfortunately, the docs contain this sentence: “On Windows, MIME types are extracted from the registry.” This means that Microsoft can and did break the behavior of
TypeByExtension. (Maybe we need a function calledTypeByExtensionButIgnoringMicrosoftInsanity. 😉 )One could make the argument that the requirement for
TypeByExtensionis to return expected mime types, not merely types subject to Microsoft’s breakage. In fact, MDN states explicitly this:Arguably, the current implementation is incorrect because it depends on an unreliable operating system feature. Adherence to the expectations of millions of developers and to industry standards should be the requirement. The requirement should not be to comply with an unreliable Windows feature.
Changing the function to ignore Microsoft’s insanity would be a breaking change, but maybe a breaking change is better than a function whose implementation allows it to be broken by Microsoft. Therefore, for crucial file types – html, css, and js – perhaps the mime types should be hardcoded. Yes, a breaking change. But a breaking change that fixes and prevents breakage.
The requirement of the mime package should be to correctly ascertain the mime type of common files, regardless of Windows registry settings. If a web server can’t properly serve up a
jsfile, that’s a major facepalm right there.For
.js,.html, and.css, the code should return the expected mime type on Windows if theContent Typeregistry value is missing. Those three are sensible special cases for fallbacks in case of missing values in the Windows registry.This situation is clearly unfortunate but I don’t think that changing the mime package is the right approach. In general local system configuration should override defaults, not the other way around. I don’t know why Windows is providing a strange configuration, but overriding the local configuration is just going to produce a different set of strange bugs.
The problem is not unique to Go; here is the same problem reported for Python: https://bugs.python.org/issue43975 , https://www.taricorp.net/2020/windows-mime-pitfalls/ .
This bug report says that it is a problem with Visual Studio: https://developercommunity.visualstudio.com/t/installer-mime-type-for-js-extension-is-set-to-tex/954263 .
If we do something here it should be a very focused fix on this specific problem. I suggest https://go.dev/cl/406894. Can somebody who is encountering this problem on their Windows system please see if that patch fixes it? Thanks.
Hey, just wanted to mention that I have created a little tool to check if the problem is also caused on your machine and to fix the issue by setting the mentioned registry key to the expected value
application/javascript. Just if someone might be interested.https://github.com/zekroTJA/go-win-mime-fix
builtinTypesLower is safe. it is not overwritable. mime.types or registory is NOT safe. This can be added to mimeTypes easily. (ex with installing text editor on Windows). So cl191917 disable overwrite to mimeTypes from mime.types or registory. What about this?
A terrible work-around:
also @mattn has a PR to disallow the override of this type by default with the option to do it if needed via an argument to
setExtensionTypehttps://go-review.googlesource.com/c/go/+/191917/
Currently this issue prevents service worker to load as browsers block it if it’s content type is not JavaScript
As a result that I swimed in internet for 10 minutes, I figure out this value of the registory key seems to be possibly changed by some text editor or casual confguration.
https://timothytocci.com/tag/registry/ (text/plain)
https://www.jianshu.com/p/a443991462d7 (application/x-javascript)
And it is not registered in default on Windows 10. I think this should not be set from registory. Or should be non-overwritable.