2.0.3 • Published 5 months ago

@tomrpc/mount v2.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

@tomrpc/mount

import mount from '@tomrpc/mount';


const rpc = createServer({
    base: import.meta.url,
    beforeOne: function (ctx: any, key: string) {
    console.log(ctx.path);
    console.log(ctx.method);
    console.log('beforeOne key=' + key);
  },
});

rpc.base = import.meta.url;
mount(rpc, './fn');

rpc.listen(3000);
2.0.3

5 months ago

2.0.2

5 months ago

2.0.1

5 months ago

2.0.0

6 months ago

1.0.0

7 months ago