Setup a loopback project
Setup a loopback project
Login to your cloud-box over
ssh.Create it if you haven't done so already.
This will be a robust environment for learning.
Let's setup a loopback project on the [cloud-box]:
$ cd ~/workspace/loopback-zero-to-hero $ slc loopback ? What's the name of your application? loopback-zero-to-hero ? Enter name of the directory to contain the project: loopback-zero-to-heroIt will just a short while to finish.
What just happened?
A minimal set of files was placed in the
loopback-zero-to-herodirectory to facilitate your project development. Andnpm installwas auto run as part of project setup.Let's take the time to understand our directory structure:
$ cd ~/workspace/loopback-zero-to-hero $ tree -L 1 . ├── client ├── node_modules ├── package.json ├── README.md └── serverThe
clientfolder is meant to house the source code for your project's frontend/UI. If you look at it right now, it has nothing but a README file:$ cd ~/workspace/loopback-zero-to-hero $ tree -L 1 client client └── README.mdfor all intents and purposes, it can simply be considered empty.
The
node_modulesfolder contains dependencies which were installed based on what's listed in thepackage.jsonfile. If you are unfamiliar with this concept, you will need to brush up on the basics of NodeJS and the purpose ofpackage.jsonfile.The
serverfolder contains the bulk of your server-side logic which is where LoopBack shines! Take a peek:$ cd ~/workspace/loopback-zero-to-hero $ tree -L 2 server server ├── boot │ ├── authentication.js │ ├── explorer.js │ ├── rest-api.js │ └── root.js ├── config.json ├── datasources.json ├── middleware.json ├── model-config.json └── server.jsbootfolder containsjsfiles which will be run (alphabetically by default) when loopback startssome configuration files that will be easier to understand if we explain them in sections that follow
server.jsfile is the entry-point for launching loopback. Just like any NodeJS application, you can run it withnode path/to/file.js:$ node server/server.js Browse your REST API at http://0.0.0.0:3000/explorer Web server listening at: http://0.0.0.0:3000/press
ctrl+cto exit.
Last updated