Reputation: 8783
I am using nodejs Buffer class (http://nodejs.org/api/buffer.html) to parse some raw data and make use a lot of all its methods. However I'd like to use it on the client side as I don't need a server for what I am doing (mostly parsing the data).
Is there a simple way to access all the methods from the Buffer class on the client side?
Many thanks
Upvotes: 2
Views: 3124
Reputation: 106736
browserify contains a Buffer implementation for the browser, among other node core modules.
Upvotes: 6