Use java script file client side and server side at a time in node js
node js
include
call
javascript
In node js there is a module called as vm, this module is used to call javacsript functions both server side and client side at a time. Install vm module by using "npm install vm" .
If want to use vm module also install fs module. fs module is used to read the file. Install fs module by using "npm install fs" .
Below code for include external javascript file,
var fs = require('fs'); var vm = require('vm'); vm.runInThisContext(fs.readFileSync(__dirname + "/public/controllers/globalCalls.js")); console.log(ShowAttachmentName('ekg'));
You might also like:
Functions in javascript25-05-2018 functions javascript es5 es6 arrow functions named functions Closures Nested Functions Callbacks Arrow functions. |
Using slice remove last two characters from given string07-03-2017 slice remove |
Filter for change Date Time format (MM-dd-yyyy HH:mm) in Angular Js05-03-2017 mm-dd-yyyy HH:MM date formats angular js |
Filters for convert text to camel case in Angular Js05-03-2017 angularjs camelcase filters |
Get random strings from given string In javascript21-02-2017 javascript random string |