Seccion 1
Pre-release
Pre-release
Aprendizajes
- Configuración de Mongo
- Robo 3T
- Conexión entre Mongo y Node
- Tip sobre colores de consola
- Aprender un poco sobre los errores de respuestas HTTP
- Configuración inicial de Express
- Establecer las bases de nuestros RESTful services
- Al finalizar, crearemos un nuevo repositorio en GitHub para almacenar nuestro backend server y así tenerlo listo en caso de que necesitemos implementar un nuevo backend server rápidamente
Recordar
…or create a new repository on the command line
echo "# backendAdminPro" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/estudiobarragan/backendAdminPro.git
git push -u origin master
…or push an existing repository from the command line
git remote add origin https://github.com/estudiobarragan/backendAdminPro.git
git push -u origin master