1 | // Copyright IBM Corp. and LoopBack contributors 2017,2020. All Rights Reserved.
|
2 | // Node module: @loopback/core
|
3 | // This file is licensed under the MIT License.
|
4 | // License text available at https://opensource.org/licenses/MIT
|
5 |
|
6 | /**
|
7 | * The core foundation for LoopBack 4. It can also serve as the platform to
|
8 | * build large-scale Node.js applications and frameworks.
|
9 | *
|
10 | * @remarks
|
11 | * For examples of how to leverage `@loopback/core` to build composable and
|
12 | * extensible projects, check out the
|
13 | * {@link https://loopback.io/doc/en/lb4/core-tutorial.html | core tutorial}.
|
14 | *
|
15 | * @packageDocumentation
|
16 | */
|
17 |
|
18 | // Re-export public Core API coming from dependencies
|
19 | export * from '@loopback/context';
|
20 | // Export APIs
|
21 | export * from './application';
|
22 | export * from './component';
|
23 | export * from './extension-point';
|
24 | export * from './keys';
|
25 | export * from './lifecycle';
|
26 | export * from './lifecycle-registry';
|
27 | export * from './mixin-target';
|
28 | export * from './server';
|
29 | export * from './service';
|