Last Updated: February 01, 2019
·
1.011K
· soolaugust

Read local json file synchronously

Sometimes we need to read json file synchronously, as we can use require() function in NodeJS, but if we are not developing project based on NodeJS, we could try following way:

demo.html

<script type="text/javascript" src=".../***.json"> </script>

***.json

jsonContent = `[json content]`

demo.js

var readedJson = jsonContent;