all !
Basic question : In many previous app, I'm used to do in this way:
const fs = require('fs');
this does not work as well...
var fs = Npm.require('fs');
Now...using angular 2 with meteor and typescript I've no clue how to produce the same line of code.
Any solution ? Actually I just need to load a json file from my File System, but in the future I will need to use many others libs like S3 (amazon) and others.
ty !