Some React guys think about using Autoprefixes in client side. It is not a best solution, but will be good for universal/isomorphic JS, when we need to prerender SPA on server-side and didn’t know about browser.
An main problem of using Autoprefixer on client side is Can I Use dump size. And the main problem is that we need only few subset on this data.
So it will be very useful if we have minimized version of data. Like caniuse-db/support-json/css-animation.json:
{
"ie": {
"5.5 9": "n",
"10 11": "y"
}
…
}
I use space between versions, because - is already used in some versions names.
/cc @Fyrd
Some React guys think about using Autoprefixes in client side. It is not a best solution, but will be good for universal/isomorphic JS, when we need to prerender SPA on server-side and didn’t know about browser.
An main problem of using Autoprefixer on client side is Can I Use dump size. And the main problem is that we need only few subset on this data.
So it will be very useful if we have minimized version of data. Like
caniuse-db/support-json/css-animation.json:I use space between versions, because
-is already used in some versions names./cc @Fyrd