How to use the capnpc-ts.run function in capnpc-ts

To help you get started, we’ve selected a few capnpc-ts examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jdiaz5513 / capnp-ts / packages / capnpc-js / src / index.ts View on Github external
export async function main() {
  return capnpc_ts
    .run()
    .then(ctx => {
      transpileAll(ctx);
    })
    .thenReturn()
    .tapCatch(reason => {
      // tslint:disable-next-line:no-console
      console.error(reason);
      process.exit(1);
    });
}

capnpc-ts

Cap'n Proto schema compiler for TypeScript.

MIT
Latest version published 3 years ago

Package Health Score

48 / 100
Full package analysis

Popular capnpc-ts functions