0.1.1 • Published 6 years ago
@webserverless/core v0.1.1
WebServerless
Serverless based web development framework.
Getting Started
npm install @webserverless/cli@next -g
webserverless init demo # init template
npm install -g yarn # install yarn tool
yarn build # build project
yarn start:backend # start local backend for frontend
yarn start:frontend # start loacl frontend
yarn deploy # deploy project to cloud, need to configure AK with yarn config
Defining interface
// src/common/hello-world-protocol.ts
export const HelloWorldServer = Symbol('HelloWorldServer');
export interface HelloWorldServer {
say(): Promise<string>;
}
Defining server
// src/node/hello-world-server.ts
import { rpc } from '@webserverless/core/lib/common/annotation';
import { HelloWorldServer } from '../common/hello-world-protocol';
@rpc(HelloWorldServer)
export class HelloWorldServerImpl implements HelloWorldServer {
say(): Promise<string> {
return Promise.resolve('Hello world.');
}
}
Binding server
// src/node/demo-backend-module.ts
export { HelloWorldServerImpl } from './hello-world-server';
import { buildProviderModule } from 'inversify-binding-decorators';
export default buildProviderModule()
Using client proxy
// src/browser/hello-world-service.ts
import { rpcInject, component } from '@webserverless/core/lib/common/annotation';
import { HelloWorldServer } from "../common/hello-world-protocol";
@component(HelloWorldService)
export class HelloWorldService {
constructor(
@rpcInject(HelloWorldServer) protected readonly helloWorldServer: HelloWorldServer
) {}
}
Binding service
// src/browser/demo-frontend-module.ts
export { HelloWorldService } from './hello-world-service';
import { buildProviderModule } from 'inversify-binding-decorators';
export default buildProviderModule()
0.2.0-next.7727fd75
6 years ago
0.1.1
6 years ago
0.2.0-next.7cf6b529
6 years ago
0.1.0
6 years ago
0.1.0-next.4f8cdfe7
6 years ago
0.1.0-next.fbe82e93
6 years ago
0.1.0-next.3ba46137
6 years ago
0.0.8
6 years ago
0.1.0-next.1a7e6047
6 years ago
0.0.7
6 years ago
0.1.0-next.90431502
6 years ago
0.0.6
6 years ago
0.1.0-next.f2ef73bf
6 years ago
0.0.5
6 years ago
0.1.0-next.c04627fa
6 years ago
0.1.0-next.92b9aa61
6 years ago
0.0.4
6 years ago
0.1.0-next.ed155677
6 years ago
0.1.0-next.380d9539
6 years ago
0.1.0-next.b92a70fb
6 years ago
0.1.0-next.ae8a01df
6 years ago
0.1.0-next.1528e595
6 years ago
0.1.0-next.618339a3
6 years ago
0.1.0-next.185f1215
6 years ago
0.0.2
6 years ago
0.1.0-next.ef07695b
6 years ago
0.1.0-next.d4e6f2b6
6 years ago
0.1.0-next.6d2dd86d
6 years ago
0.1.0-next.9abaa450
6 years ago
0.1.0-next.e6cb256b
6 years ago
0.1.0-next.10a74b90
6 years ago
0.1.0-next.c2c78fb2
6 years ago
0.0.1
6 years ago
0.1.0-next.496c7306
6 years ago
0.1.0-next.fde146e8
6 years ago
0.1.0-next.d19a57b3
6 years ago
0.1.0-next.92ee87ff
6 years ago
0.1.0-next.044d57f7
6 years ago
0.1.0-next.cfe4ef84
6 years ago