I am new in angular and node js. I am trying to send file contents from node to angular. But i can't read it from my angular code
Here is my code
Node express
var img = fs.readFileSync('./test.jpg');
//res.writeHead(200, {'Content-Type': 'image/jpg' });
//res.end(img, 'binary');
res.send({'data':img});
console.log(img);
Angular code is
<img ng-src="data:image/JPEG;base64,{{image}}">