Does React Native use require
or import
?
All I can find is an old tutorial using require()
, but when I run react-native
Yes the latest React Native tutorials and examples use the new import
syntax.
https://facebook.github.io/react-native/docs/tutorial.html
In terms of the differences between CommonJS (require) and ES6 modules (import), there are some good answers here:
Using Node.js require vs. ES6 import/export
I think most people prefer the new ES6 syntax. However no JS engines implement ES6 modules currently, so it needs to be converted by an ES6 transpiler (e.g. Babel) to require
statements. React Native is setup to do this out of the box, so you can just start using import
and it should just work.