From c572d104c5c3d8ad6bd7ba7ee5129f16e45c70f6 Mon Sep 17 00:00:00 2001 From: Jiri Spac Date: Sat, 26 May 2018 12:30:23 +0200 Subject: [PATCH] adds Browser support section to the main readme as this might be a common question for mobx 5 and up --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8adfef431..77ecc017a 100644 --- a/README.md +++ b/README.md @@ -258,8 +258,12 @@ For the same reason you can use it out of the box both server and client side, i The result of this is that you often need to learn less new concepts when using MobX in comparison to other state management solutions. ---- +### Browser support + +MobX >=5 runs on any browser with [ES6 proxy support](https://kangax.github.io/compat-table/es6/#test-Proxy). On older environments such as IE11 or Node.js 4 it throws an error on startup. +MobX <=4 runs in any ES5 compatible environment-so IE9 an up. +--- ## Credits