Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 27 additions & 7 deletions pages/en/lb4/Examples-and-tutorials.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,30 @@ permalink: /doc/en/lb4/Examples-and-tutorials.html
summary:
---

The LoopBack 4 tutorials are:
- [loopback4-example-hello-world](https://github.com/strongloop/loopback4-example-hello-world).
- Tutorial on setting up a simple hello-world application using LoopBack 4.
- [loopback4-example-getting-started](https://github.com/strongloop/loopback4-example-getting-started).
- Tutorial on building a simple application with LoopBack 4 key concepts.
- [loopback4-example-log-extension](https://github.com/strongloop/loopback4-example-log-extension).
- Tutorial on building an application demo a log extension.
LoopBack 4 comes with the following example projects:

- **[hello-world](https://github.com/strongloop/loopback-next/tree/master/packages/example-hello-world)**:
Tutorial on setting up a simple hello-world application using LoopBack 4.

- **[getting-started](https://github.com/strongloop/loopback-next/tree/master/packages/example-getting-started)**:
Tutorial on building a simple application with LoopBack 4 key concepts.

- **[log-extension](https://github.com/strongloop/loopback-next/tree/master/packages/example-log-extension)**:
Tutorial on building a log extension.

- **[rpc-server](https://github.com/strongloop/loopback-next/tree/master/packages/example-rpc-server)**:
An example showing how to implement a made-up RPC protocol.

You can download any of the example projects usig our CLI tool `lb4`:


```
$ lb4 example
? What example would you like to clone? (Use arrow keys)
❯ getting-started: An application and tutorial on how to build with LoopBack 4.
hello-world: A simple hello-world Application using LoopBack 4
log-extension: An example extension project for LoopBack 4
rpc-server: A basic RPC server using a made-up protocol.
```

Please follow the instructions in [Install LoopBack4 CLI](Getting-started.html#install-loopback-4-cli) if you don't have `lb4` installed yet.