Skip to content

Instantly share code, notes, and snippets.

@jamlfy
Last active December 31, 2015 04:49
Show Gist options
  • Save jamlfy/7936540 to your computer and use it in GitHub Desktop.
Save jamlfy/7936540 to your computer and use it in GitHub Desktop.
+ Proyectos/Mis Proyectos
+ node_modules
| + express
| + mongodb
| ....
|
+ Parte/Proyecto A
| + index.js
| ...
+ Parte/Proyecto B
| + index.js
| ...
+ Parte/Proyecto C
| + index.js
| ...
////////////////
Parte A/index.js
var express = require('express');
var app = express();
... Mas programacion
////////////////
Parte B/index.js
var express = require('express');
var app = express();
... Mas programacion
////////////////
Parte C/index.js
var express = require('express');
var app = express();
... Mas programacion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment