UNPKG

979 BPlain TextView Raw
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
19export * from '@loopback/context';
20// Export APIs
21export * from './application';
22export * from './component';
23export * from './extension-point';
24export * from './keys';
25export * from './lifecycle';
26export * from './lifecycle-registry';
27export * from './mixin-target';
28export * from './server';
29export * from './service';