UNPKG
preon
Version:
latest (1.0.4)
1.0.4
1.0.1
1.0.0
1.0.0-alpha.0
0.2.2
0.2.1
0.2.0
0.1.15
0.1.14
0.1.12
0.1.11
0.1.7
0.1.6
0.1.3
0.0.2
0.0.2-wip
a smaller nodejs micro-service framework
github.com/preonJs/preon
preonJs/preon
preon
/
src
/
application.ts
16 lines
(11 loc)
•
297 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
PreonCore
, {
ApplicationOptions
}
from
'@preon/core'
;
export
interface
Application
extends
Preon
{ }
export
default
class
Preon
extends
PreonCore
{
constructor
(
options
?:
Partial
<
ApplicationOptions
>
) {
super
(options); }
get
path
() {
return
__dirname; } }