@compas/code-gen
TypeScript icon, indicating that this package has built-in type declarations

0.17.0 • Public • Published

@compas/code-gen

Install size CI status badge Codecov status


Code generators for routers, validators, SQL queries, API clients and more. Take a look at the documentation.

As a server

mainFn(import.meta, main);

async function main() {
  const app = new App();

  const T = new TypeCreator("post");
  const R = T.router("/post");

  app.add(
    new TypeCreator("database")
      .object("post")
      .keys({
        title: T.string().searchable(),
        body: T.string(),
      })
      .enableQueries({ withDates: true }),

    T.crud("/post").entity(T.reference("database", "post")).routes({
      listRoute: true,
      singleRoute: true,
      createRoute: true,
      updateRoute: true,
      deleteRoute: true,
    }),
  );

  await app.generate({
    outputDirectory: "./src/generated/application",
    dumpStructure: true,
    dumpApiStructure: true,
    dumpPostgres: true,
    enabledGenerators: ["validator", "router", "sql", "apiClient"],
  });
}

As a client

mainFn(import.meta, main);

async function main() {
  const app = new App({ verbose: true });

  const fromRemote = await loadApiStructureFromRemote(
    Axios,
    "https://some.compas.powered.backend",
  );

  app.extend(fromRemote);

  await app.generate({
    outputDirectory: "./src/generated",
    isBrowser: true,
    enabledGenerators: ["type", "apiClient", "reactQuery"],
  });

  await spawn("yarn", ["format"]);
}

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.17.090latest

Version History

VersionDownloads (Last 7 Days)Published
0.17.090
0.16.5156
0.16.414
0.16.35
0.16.21
0.16.17
0.16.01
0.15.844
0.15.71
0.15.61
0.15.5186
0.15.4180
0.15.3180
0.15.21
0.15.12
0.15.0181
0.14.1514
0.14.02
0.13.1177
0.13.0180
0.12.44
0.12.32
0.12.2181
0.12.1178
0.12.01
0.11.28
0.11.12
0.11.02
0.10.63
0.10.52
0.10.44
0.10.32
0.10.22
0.10.11
0.10.02
0.9.01
0.8.16
0.8.02
0.7.611
0.7.52
0.7.41
0.7.34
0.7.23
0.7.12
0.7.02
0.6.02
0.5.52
0.5.46
0.5.33
0.5.22
0.5.11
0.5.03
0.4.01
0.3.23
0.3.12
0.3.01
0.2.01
0.1.01
0.0.2497
0.0.2481
0.0.2473
0.0.24610
0.0.2451
0.0.2441
0.0.2433
0.0.2421
0.0.2411
0.0.2401
0.0.2391
0.0.2381
0.0.2371
0.0.2361
0.0.2351
0.0.2341
0.0.2333
0.0.2321
0.0.2311
0.0.2301
0.0.2291
0.0.2281
0.0.2271
0.0.2261
0.0.2252
0.0.2241
0.0.2231
0.0.2221
0.0.2212
0.0.2207
0.0.2191
0.0.2181
0.0.2171
0.0.2161
0.0.2151
0.0.2141
0.0.2131
0.0.2121
0.0.21161
0.0.2101
0.0.2093
0.0.20810
0.0.2073
0.0.2063
0.0.2051
0.0.2044
0.0.2031
0.0.2021
0.0.2011
0.0.2001
0.0.1991
0.0.1981
0.0.1971
0.0.1961
0.0.1951
0.0.19414
0.0.1931
0.0.1921
0.0.1913
0.0.1901
0.0.1891
0.0.1881
0.0.1871
0.0.1861
0.0.1851
0.0.1841
0.0.1831
0.0.1822
0.0.1811
0.0.1801
0.0.17913
0.0.1781
0.0.1771
0.0.1761
0.0.1756
0.0.1741
0.0.1732
0.0.1722
0.0.1712
0.0.1702
0.0.1691
0.0.1681
0.0.1672
0.0.1662
0.0.1654
0.0.1642
0.0.1632
0.0.1624
0.0.16111
0.0.1602
0.0.15910
0.0.1582
0.0.1572
0.0.1562
0.0.1552
0.0.1532
0.0.1522
0.0.1513
0.0.1502
0.0.1492
0.0.1482
0.0.1473
0.0.1462
0.0.1452
0.0.1442
0.0.1431
0.0.1422
0.0.1412
0.0.1402
0.0.1392
0.0.1382
0.0.1372
0.0.1362
0.0.1352
0.0.1342
0.0.1332
0.0.1322
0.0.1312
0.0.1302
0.0.1293
0.0.1282
0.0.1272
0.0.1262
0.0.1253
0.0.1242
0.0.1232
0.0.1222
0.0.1212
0.0.1202
0.0.1193
0.0.1182
0.0.1173
0.0.1162
0.0.1152
0.0.1142
0.0.1132
0.0.1122
0.0.1112
0.0.1102
0.0.1092
0.0.1082
0.0.1072
0.0.1063
0.0.1053
0.0.1042
0.0.1038

Package Sidebar

Install

npm i @compas/code-gen

Homepage

compasjs.com

Weekly Downloads

2,471

Version

0.17.0

License

MIT

Unpacked Size

1.46 MB

Total Files

202

Last publish

Collaborators

  • dirkdev98