Skip to content

Seccion 1

Pre-release
Pre-release
Compare
Choose a tag to compare
@estudiobarragan estudiobarragan released this 18 Oct 14:40
· 6 commits to master since this release

Aprendizajes

  1. Configuración de Mongo
  2. Robo 3T
  3. Conexión entre Mongo y Node
  4. Tip sobre colores de consola
  5. Aprender un poco sobre los errores de respuestas HTTP
  6. Configuración inicial de Express
  7. Establecer las bases de nuestros RESTful services
  8. 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