Full-Stack TypeScript Framework for building epic HexArch designed applications.
This package includes plugin for Nx tailored for the Hexancore framework. It enables developers to seamlessly integrate and manage Hexancore projects within the Nx ecosystem, leveraging advanced monorepo tools and streamlined code organization.
The plugin offers a set of commands and schematics that simplify the creation, configuration, and building of Hexancore applications while ensuring full compatibility with Nx tools. Perfect for teams looking to combine the flexibility of Hexancore with the powerful features of Nx.
npx create-nx-workspace <workspace-name> --pm pnpm --preset @hexancore/nx --nxCloud skip --workspaceType integrated
Creates new application.
nx g @hexancore/nx:app <directory> --type <backend|frontend>
Options
-
directory - Application directory, final:
apps/<directory>
and project name will beapp-<directory where all '/' replaced with '-'>
-
type - Application type
- backend
- frontend
Creates new library.
nx g @hexancore/nx:lib <directory> --type <backend|frontend|shared>
Options
-
directory - Library directory, final:
libs/<directory>
and project name will be<directory where all '/' replaced with '-'>
-
type - Library type
- backend
- frontend
- shared