Checking for IE11 Support
See original GitHub issueHi,
I am a maintainer of a project which must have support for IE11 browser. I’m wondering what is your browser support list since this project has been flagged as not ES5 safe.
Checking ES5 support for node_modules on my project with are-you-es5 shows:
> npx are-you-es5 check . -rv
...
✅ react-... is ES5
❌ react-querybuilder is not ES5
✅ react-... is ES5
...
If you try are-you-es5 on your project folder you would get the result:
> npx are-you-es5 check . -r -v
npx: installed 10 in 5.236s
✅ lodash is ES5
❌ nanoid is not ES5
✅ prop-types is ES5
Babel-loader exclude regex:
/[\\/]node_modules[\\/](?!(nanoid)[\\/])/
Non-ES5 dependencies detected.
So, to provide support you would have to transpile the offending nanoid
package as mentioned on their README file in
https://github.com/ai/nanoid#ie
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Internet Explorer 11 detection - javascript - Stack Overflow
I tested the script with IE11 emulator. To find the IE11 emulator, right-click on the web browser click "Inspect element". At the bottom-left...
Read more >How to check whether I am using the Internet Explorer 11 ...
Press the Alt key (next to the Spacebar) on the keyboard to open a menu bar. Click Help and select About Internet Explorer....
Read more >Fix web compatibility issues using document modes and the ...
Test your sites for document mode compatibility · Go to a site having compatibility problems, press F12 to open the F12 Developer Tools,...
Read more >Browser Compatibility of ECMAScript 2015 (ES6) on Internet ...
ECMAScript 2015 (ES6) is Partially Supported on Internet Explorer 11. Checkout overall cross browser compatibility of ECMAScript 2015 (ES6) ...
Read more >Internet Explorer 11 - Wikipedia
Support for Internet Explorer 11, now regarded as an "OS component", is bound to the version of the Windows it is installed on....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Yeah, it works. Thanks.
For anyone coming to this page via a search engine, we now have an IE11-compatible demo page.