opensource-ny / OpenSource-NY

MIT License
10 stars 14 forks source link

Better file structure #40

Closed Fioringo closed 5 years ago

Fioringo commented 5 years ago

I think that it would be good to have the client and server side separated. What I mean is have 2 directories (one for server, one for client) and each have their own node modules. That way the modules directories can be modified independently and run independently.

For example:

root
+---| server
|   +--- package.json
|   +--- node_modules
|   +--- server.js
|   +--- routes
+---| client
|   +--- package.json
|   +--- node_modules
|   +--- App.js
|   +--- src
|   +--- etc...
yizongk commented 5 years ago

I like it, I will do it now