I am working on an application in Node.js and because this project is for learning more than anything else right now I decided to go with a framework on it. So I looked at Node's wiki page on GitHub that lists some frameworks and I must say it has driven me dizzy.
My application will have no actual front-end. It is only to handle any interaction with the file server to write, zip, read, etc. files. Is there a framework with special methods for working with a file system? 开发者_如何学JAVAI know Node already has a lot built in.
You should search the NPM registry. It has a lot of good packages. I found these packages to help you with zip files for example:
- https://github.com/kriskowal/zip
- https://github.com/springmeyer/node-zipfile
The NPM registry is really amazing :)
精彩评论