Building Vue Apps with the Nx Standalone Projects Setup

In this tutorial you'll learn how to use Vue with Nx in a "standalone" (non-monorepo) setup. Not to be confused with the "Vue Standalone API", a standalone project in Nx is a non-monorepo setup where you have a single application at the root level. This setup is very similar to what the Vue CLI gives you.

What are you going to learn?

  • how to create a new standalone (single-project) Nx workspace setup for Vue
  • how to run a single task (i.e. serve your app) or run multiple tasks in parallel
  • how to leverage code generators to scaffold components
  • how to modularize your codebase and impose architectural constraints for better maintainability

Note, while you could easily use Nx together with your manually set up Vue application, we're going to use the @nx/vue plugin for this tutorial which provides some nice enhancements when working with Vue. Visit our "Why Nx" page to learn more about plugins and what role they play in the Nx architecture.

Warm Up

Here's the source code of the final result for this tutorial.

Creating a new Vue App

Create a new Vue application with the following command:

~โฏ

npx create-nx-workspace@latest myvueapp --preset=vue-standalone

1 > NX Let's create a new workspace [https://nx.dev/getting-started/intro] 2 3โœ” Test runner to use for end to end (E2E) tests ยท cypress 4โœ” Default stylesheet format ยท css 5โœ” Enable distributed caching to make your CI faster ยท Yes 6 7 > NX Creating your v17.0.0 workspace. 8 9 To make sure the command works reliably in all environments, and that the preset is applied correctly, 10 Nx will run "npm install" several times. Please wait. 11

You can also choose Playwright for your e2e tests or a different stylesheet format. In this tutorial we're going to use Cypress and css. The above command generates the following structure:

1โ””โ”€ myvueapp 2 โ”œโ”€ .vscode 3 โ”‚ โ””โ”€ extensions.json 4 โ”œโ”€ e2e 5 โ”‚ โ”œโ”€ ... 6 โ”‚ โ”œโ”€ project.json 7 โ”‚ โ”œโ”€ src 8 โ”‚ โ”‚ โ”œโ”€ e2e 9 โ”‚ โ”‚ โ”‚ โ””โ”€ app.cy.ts 10 โ”‚ โ”‚ โ”œโ”€ ... 11 โ”‚ โ””โ”€ tsconfig.json 12 โ”œโ”€ src 13 โ”‚ โ”œโ”€ app 14 โ”‚ โ”‚ โ”œโ”€ App.spec.ts 15 โ”‚ โ”‚ โ”œโ”€ App.vue 16 โ”‚ โ”‚ โ””โ”€ NxWelcome.vue 17 โ”‚ โ”œโ”€ main.ts 18 โ”‚ โ””โ”€ styles.css 19 โ”œโ”€ index.html 20 โ”œโ”€ nx.json 21 โ”œโ”€ package.json 22 โ”œโ”€ project.json 23 โ”œโ”€ README.md 24 โ”œโ”€ tsconfig.app.json 25 โ”œโ”€ tsconfig.base.json 26 โ”œโ”€ tsconfig.json 27 โ”œโ”€ tsconfig.spec.json 28 โ””โ”€ vite.config.ts 29

The setup includes..

  • a new Vue application at the root of the Nx workspace (src)
  • a Cypress based set of e2e tests (e2e/)
  • Prettier preconfigured
  • ESLint preconfigured
  • Vitest preconfigured

Let me explain a couple of things that might be new to you.

FileDescription
nx.jsonThis is where we fine-tune how Nx works. We define what cacheable operations there are, and configure our task pipeline. More on that soon.
project.jsonThis file contains the targets that can be invoked for the myreactapp project. It is like a more evolved version of simple package.json scripts with more metadata attached. You can read more about it here.

Serving the App

The most common tasks are already defined in the package.json file:

package.json
1{ 2 "name": "myvueapp", 3 "scripts": { 4 "start": "nx serve", 5 "build": "nx build", 6 "test": "nx test" 7 } 8 ... 9} 10

To serve your new Vue application, just run: npm start. Alternatively you can directly use Nx by using

โฏ

nx serve

Your application should be served at http://localhost:4200.

Nx uses the following syntax to run tasks:

Syntax for Running Tasks in Nx

All targets, such as serve, build, test or your custom ones, are defined in the project.json file.

1{ 2 "name": "myvueapp", 3 ... 4 "targets": { 5 "lint": { ... }, 6 "build": { ... }, 7 "serve": { ... }, 8 "preview": { ... }, 9 "test": { ... }, 10 "serve-static": { ... }, 11 }, 12} 13

Each target contains a configuration object that tells Nx how to run that target.

1{ 2 "name": "myvueapp", 3 ... 4 "targets": { 5 "serve": { 6 "executor": "@nx/vite:dev-server", 7 "defaultConfiguration": "development", 8 "options": { 9 "buildTarget": "myvueapp:build" 10 }, 11 "configurations": { 12 "development": { 13 "buildTarget": "myvueapp:build:development", 14 "hmr": true 15 }, 16 "production": { 17 "buildTarget": "myvueapp:build:production", 18 "hmr": false 19 } 20 } 21 }, 22 ... 23 }, 24} 25
Nx 15 and lower use @nrwl/ instead of @nx/

The most critical parts are:

  • executor - this is of the syntax <plugin>:<executor-name>, where the plugin is an NPM package containing an Nx Plugin and <executor-name> points to a function that runs the task. In this case, the @nx/vite plugin contains the dev-server executor which serves the React app using Vite.
  • options - these are additional properties and flags passed to the executor function to customize it

Learn more about how to run tasks with Nx.

Testing and Linting - Running Multiple Tasks

Our current setup not only has targets for serving and building the Vue application, but also has targets for unit testing, e2e testing and linting. Again, these are defined in the project.json file. We can use the same syntax as before to run these tasks:

1nx test # runs tests using Jest 2nx lint # runs linting with ESLint 3nx e2e e2e # runs e2e tests with Cypress 4

More conveniently, we can also run them in parallel using the following syntax:

myvueappโฏ

nx run-many -t test lint e2e

1 2 โœ” nx run e2e:lint (1s) 3 โœ” nx run myvueapp:lint (1s) 4 โœ” nx run myvueapp:test (2s) 5 โœ” nx run e2e:e2e (6s) 6 7 โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€” 8 9 > NX Successfully ran targets test, lint, e2e for 2 projects (8s) 10

Caching

One thing to highlight is that Nx is able to cache the tasks you run.

Note that all of these targets are automatically cached by Nx. If you re-run a single one or all of them again, you'll see that the task completes immediately. In addition, (as can be seen in the output example below) there will be a note that a matching cache result was found and therefore the task was not run again.

myvueappโฏ

nx run-many -t test lint e2e

1 2 โœ” nx run myvueapp:lint [existing outputs match the cache, left as is] 3 โœ” nx run e2e:lint [existing outputs match the cache, left as is] 4 โœ” nx run myvueapp:test [existing outputs match the cache, left as is] 5 โœ” nx run e2e:e2e [existing outputs match the cache, left as is] 6 7 โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€” 8 9 > NX Successfully ran targets test, lint, e2e for 2 projects (143ms) 10 11 Nx read the output from the cache instead of running the command for 4 out of 4 tasks. 12

Not all tasks might be cacheable though. You can mark all targets of a certain type as cacheable by setting cache to true in the targetDefaults of the nx.json file. You can also learn more about how caching works.

Nx Plugins? Why?

One thing you might be curious about is the project.json. You may wonder why we define tasks inside the project.json file instead of using the package.json file with scripts that directly launch Vite.

Nx understands and supports both approaches, allowing you to define targets either in your package.json or project.json files. While both serve a similar purpose, the project.json file can be seen as an advanced form of package.json scripts, providing additional metadata and capabilities. In this tutorial, we utilize the project.json approach primarily because we take advantage of Nx Plugins.

So, what are Nx Plugins? Nx Plugins are optional packages that extend the capabilities of Nx, catering to various specific technologies. For instance, we have plugins tailored to Vue (e.g., @nx/vue), Vite (@nx/vite), Cypress (@nx/cypress), and more. These plugins offer additional features, making your development experience more efficient and enjoyable when working with specific tech stacks.

Visit our "Why Nx" page for more details.

Creating New Components

You can just create new React components as you normally would. However, Nx plugins usually also ship generators. They allow you to easily scaffold code, configuration or entire projects. To see what capabilities the @nx/vue plugin ships, run the following command and inspect the output:

myvueappโฏ

npx nx list @nx/vue

1 2> NX Capabilities in @nx/vue: 3 4 GENERATORS 5 6 init : Initialize the `@nx/vue` plugin. 7 application : Create a Vue application. 8 library : Create a Vue library. 9 component : Create a Vue component. 10 setup-tailwind : Set up Tailwind configuration for a project. 11 storybook-configuration : Set up storybook for a Vue app or library. 12 stories : Create stories for all components declared in an app or library. 13
Nx 15 and lower use @nrwl/ instead of @nx/
Prefer a more visual UI?

If you prefer a more integrated experience, you can install the "Nx Console" extension for your code editor. It has support for VSCode, IntelliJ and ships a LSP for Vim. Nx Console provides autocompletion support in Nx configuration files and has UIs for browsing and running generators.

More info can be found in the integrate with editors article.

Run the following command to generate a new "hello-world" component. Note how we append --dry-run to first check the output.

myvueappโฏ

npx nx g @nx/vue:component hello-world --no-export --unit-test-runner=vitest --directory=src/components --dry-run

1> NX Generating @nx/vue:component 2 3CREATE src/components/hello-world.spec.ts 4CREATE src/components/hello-world.vue 5 6NOTE: The "dryRun" flag means no changes were made. 7
Nx 15 and lower use @nrwl/ instead of @nx/

As you can see it generates a new component in the src/components/ folder. If you want to actually run the generator, remove the --dry-run flag.

src/components/hello-world.vue
1<script setup lang="ts"> 2// defineProps<{}>(); 3</script> 4 5<template> 6 <p>Welcome to HelloWorld!</p> 7</template> 8 9<style scoped></style> 10

Building the App for Deployment

If you're ready and want to ship your application, you can build it using

myvueappโฏ

npx nx build

1> nx run myvueapp:build:production 2 3vite v4.3.9 building for production... 4โœ“ 15 modules transformed. 5dist/myvueapp/index.html 0.43 kB โ”‚ gzip: 0.29 kB 6dist/myvueapp/assets/index-a0201bbf.css 7.90 kB โ”‚ gzip: 1.78 kB 7dist/myvueapp/assets/index-46a11b5f.js 62.39 kB โ”‚ gzip: 24.35 kB 8โœ“ built in 502ms 9 10 โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€” 11 12 > NX Successfully ran target build for project myvueapp (957ms) 13

All the required files will be placed in the dist/myvueapp folder and can be deployed to your favorite hosting provider.

You're ready to go!

In the previous sections you learned about the basics of using Nx, running tasks and navigating an Nx workspace. You're ready to ship features now!

But there's more to learn. You have two possibilities here:

Modularizing your Vue App with Local Libraries

When you develop your Vue application, usually all your logic sits in the app folder. Ideally separated by various folder names which represent your "domains". As your app grows, this becomes more and more monolithic though.

The following structure is a common example of this kind of monolithic code organization:

1โ””โ”€ myvueapp 2 โ”œโ”€ ... 3 โ”œโ”€ src 4 โ”‚ โ”œโ”€ app 5 โ”‚ โ”‚ โ”œโ”€ products 6 โ”‚ โ”‚ โ”œโ”€ cart 7 โ”‚ โ”‚ โ”œโ”€ ui 8 โ”‚ โ”‚ โ”œโ”€ ... 9 โ”‚ โ”‚ โ””โ”€ App.vue 10 โ”‚ โ”œโ”€ ... 11 โ”‚ โ””โ”€ main.ts 12 โ”œโ”€ ... 13 โ”œโ”€ package.json 14 โ”œโ”€ ... 15

Nx allows you to separate this logic into "local libraries". The main benefits include

  • better separation of concerns
  • better reusability
  • more explicit "APIs" between your "domain areas"
  • better scalability in CI by enabling independent test/lint/build commands for each library
  • better scalability in your teams by allowing different teams to work on separate libraries

Creating Local Libraries

Let's assume our domain areas include products, orders and some more generic design system components, called ui. We can generate a new library for each of these areas using the Vue library generator:

1nx g @nx/vue:library products --directory=modules/products --unit-test-runner=vitest --bundler=vite 2nx g @nx/vue:library orders --directory=modules/orders --unit-test-runner=vitest --bundler=vite 3nx g @nx/vue:library shared-ui --directory=modules/shared/ui --unit-test-runner=vitest --bundler=vite 4
Nx 15 and lower use @nrwl/ instead of @nx/

Note how we use the --directory flag to place the libraries into a subfolder. You can choose whatever folder structure you like, even keep all of them at the root-level.

Running the above commands should lead to the following directory structure:

1โ””โ”€ myvueapp 2 โ”œโ”€ ... 3 โ”œโ”€ e2e/ 4 โ”œโ”€ modules 5 โ”‚ โ”œโ”€ products 6 โ”‚ โ”‚ โ”œโ”€ .eslintrc.json 7 โ”‚ โ”‚ โ”œโ”€ README.md 8 โ”‚ โ”‚ โ”œโ”€ vite.config.ts 9 โ”‚ โ”‚ โ”œโ”€ package.json 10 โ”‚ โ”‚ โ”œโ”€ project.json 11 โ”‚ โ”‚ โ”œโ”€ src 12 โ”‚ โ”‚ โ”‚ โ”œโ”€ index.ts 13 โ”‚ โ”‚ โ”‚ โ”œโ”€ components 14 โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€ products.spec.ts 15 โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€ products.vue 16 โ”‚ โ”‚ โ”‚ โ””โ”€ vue-shims.d.ts 17 โ”‚ โ”‚ โ”œโ”€ tsconfig.json 18 โ”‚ โ”‚ โ”œโ”€ tsconfig.lib.json 19 โ”‚ โ”‚ โ””โ”€ tsconfig.spec.json 20 โ”‚ โ”œโ”€ orders 21 โ”‚ โ”‚ โ”œโ”€ ... 22 โ”‚ โ”‚ โ”œโ”€ src 23 โ”‚ โ”‚ โ”‚ โ”œโ”€ index.ts 24 โ”‚ โ”‚ โ”‚ โ”œโ”€ components 25 โ”‚ โ”‚ โ”‚ โ”‚ โ”œโ”€ ... 26 โ”‚ โ”‚ โ”‚ โ”‚ โ””โ”€ orders.vue 27 โ”‚ โ”‚ โ”œโ”€ ... 28 โ”‚ โ””โ”€ shared 29 โ”‚ โ””โ”€ ui 30 โ”‚ โ”œโ”€ ... 31 โ”‚ โ”œโ”€ src 32 โ”‚ โ”‚ โ”œโ”€ index.ts 33 โ”‚ โ”‚ โ””โ”€ components 34 โ”‚ โ”‚ โ””โ”€ shared-ui.vue 35 โ”‚ โ””โ”€ ... 36 โ”œโ”€ ... 37 โ”œโ”€ src 38 โ”‚ โ”œโ”€ app 39 โ”‚ โ”‚ โ”œโ”€ ... 40 โ”‚ โ”‚ โ”œโ”€ App.vue 41 โ”‚ โ”œโ”€ ... 42 โ”œโ”€ ... 43

Each of these libraries

  • has its own project.json file with corresponding targets you can run (e.g. running tests for just orders: nx test orders)
  • has a dedicated index.ts file which is the "public API" of the library
  • is mapped in the tsconfig.base.json at the root of the workspace

Importing Libraries into the Vue Application

All libraries that we generate automatically have aliases created in the root-level tsconfig.base.json.

tsconfig.base.json
1{ 2 "compilerOptions": { 3 ... 4 "paths": { 5 "@myvueapp/orders": ["modules/orders/src/index.ts"], 6 "@myvueapp/products": ["modules/products/src/index.ts"], 7 "@myvueapp/shared-ui": ["modules/shared/ui/src/index.ts"] 8 }, 9 ... 10 }, 11} 12

Hence we can easily import them into other libraries and our Vue application. For example: let's use our existing Products component in modules/products/src/lib/products.vue:

modules/products/src/lib/products.vue
1<script setup lang="ts"> 2// defineProps<{}>(); 3</script> 4 5<template> 6 <p>Welcome to Products!</p> 7</template> 8 9<style scoped></style> 10

Make sure the Products component is exported via the index.ts file of our products library (which it should already be). The modules/products/src/index.ts file is the public API for the products library with the rest of the workspace. Only export what's really necessary to be usable outside the library itself.

modules/products/src/index.ts
1export { default as Products } from './lib/products.vue'; 2

We're ready to import it into our main application now. First, let's set up the Vue Router.

โฏ

npm install vue-router --legacy-peer-deps

Configure it in the main.ts file.

src/main.ts
1import './styles.css'; 2 3import { createApp } from 'vue'; 4import App from './app/App.vue'; 5import NxWelcome from './app/NxWelcome.vue'; 6import * as VueRouter from 'vue-router'; 7 8const routes = [ 9 { path: '/', component: NxWelcome }, 10 { 11 path: '/products', 12 component: () => import('@myvueapp/products').then((m) => m.Products), 13 }, 14]; 15 16const router = VueRouter.createRouter({ 17 history: VueRouter.createWebHashHistory(), 18 routes, 19}); 20 21const app = createApp(App); 22 23app.use(router); 24app.mount('#root'); 25

Then we can set up navigation links and the RouterView in the main App component.

src/app/App.vue
1<script setup lang="ts"> 2import { RouterLink, RouterView } from 'vue-router'; 3</script> 4 5<template> 6 <nav> 7 <ul> 8 <li> 9 <RouterLink to="/">Home</RouterLink> 10 </li> 11 <li> 12 <RouterLink to="/products">Products</RouterLink> 13 </li> 14 </ul> 15 </nav> 16 17 <RouterView /> 18</template> 19

If you now navigate to http://localhost:4200/#/products you should see the Products component being rendered.

Browser screenshot of navigating to the products route

Let's do the same process for our orders library. Import the Orders component into the main.ts routes:

src/main.ts
1import './styles.css'; 2 3import { createApp } from 'vue'; 4import App from './app/App.vue'; 5import NxWelcome from './app/NxWelcome.vue'; 6import * as VueRouter from 'vue-router'; 7 8const routes = [ 9 { path: '/', component: NxWelcome }, 10 { 11 path: '/products', 12 component: () => import('@myvueapp/products').then((m) => m.Products), 13 }, 14 { 15 path: '/orders', 16 component: () => import('@myvueapp/orders').then((m) => m.Orders), 17 }, 18]; 19 20const router = VueRouter.createRouter({ 21 history: VueRouter.createWebHashHistory(), 22 routes, 23}); 24 25const app = createApp(App); 26 27app.use(router); 28app.mount('#root'); 29

And update the navigation links:

src/app/App.vue
1<script setup lang="ts"> 2import { RouterLink, RouterView } from 'vue-router'; 3</script> 4 5<template> 6 <nav> 7 <ul> 8 <li> 9 <RouterLink to="/">Home</RouterLink> 10 </li> 11 <li> 12 <RouterLink to="/products">Products</RouterLink> 13 </li> 14 <li> 15 <RouterLink to="/orders">Orders</RouterLink> 16 </li> 17 </ul> 18 </nav> 19 20 <RouterView /> 21</template> 22

Similarly, navigating to http://localhost:4200/#/orders should now render the Orders component.

Note that both the Products component and Orders component are lazy loaded so the initial bundle size will be smaller.

Visualizing your Project Structure

Nx automatically detects the dependencies between the various parts of your workspace and builds a project graph. This graph is used by Nx to perform various optimizations such as determining the correct order of execution when running tasks like nx build, identifying affected projects and more. Interestingly you can also visualize it.

Just run:

โฏ

nx graph

You should be able to see something similar to the following in your browser (hint: click the "Show all projects" button).

Loading...

Notice how shared-ui is not yet connected to anything because we didn't import it in any of our projects. Also the arrows to orders and products are dashed because we're using lazy imports.

Exercise for you: change the codebase so that shared-ui is used by orders and products. Note: you need to restart the nx graph command to update the graph visualization or run the CLI command with the --watch flag.

Imposing Constraints with Module Boundary Rules

Once you modularize your codebase you want to make sure that the modules are not coupled to each other in an uncontrolled way. Here are some examples of how we might want to guard our small demo workspace:

  • we might want to allow orders to import from shared-ui but not the other way around
  • we might want to allow orders to import from products but not the other way around
  • we might want to allow all libraries to import the shared-ui components, but not the other way around

When building these kinds of constraints you usually have two dimensions:

  • type of project: what is the type of your library. Example: "feature" library, "utility" library, "data-access" library, "ui" library (see library types)
  • scope (domain) of the project: what domain area is covered by the project. Example: "orders", "products", "shared" ... this really depends on the type of product you're developing

Nx comes with a generic mechanism that allows you to assign "tags" to projects. "tags" are arbitrary strings you can assign to a project that can be used later when defining boundaries between projects. For example, go to the project.json of your orders library and assign the tags type:feature and scope:orders to it.

modules/orders/project.json
1{ 2 ... 3 "tags": ["type:feature", "scope:orders"], 4 ... 5} 6

Then go to the project.json of your products library and assign the tags type:feature and scope:products to it.

modules/products/project.json
1{ 2 ... 3 "tags": ["type:feature", "scope:products"], 4 ... 5} 6

Finally, go to the project.json of the shared-ui library and assign the tags type:ui and scope:shared to it.

modules/shared/ui/project.json
1{ 2 ... 3 "tags": ["type:ui", "scope:shared"], 4 ... 5} 6

Notice how we assign scope:shared to our UI library because it is intended to be used throughout the workspace.

Next, let's come up with a set of rules based on these tags:

  • type:feature should be able to import from type:feature and type:ui
  • type:ui should only be able to import from type:ui
  • scope:orders should be able to import from scope:orders, scope:shared and scope:products
  • scope:products should be able to import from scope:products and scope:shared

To enforce the rules, Nx ships with a custom ESLint rule. Open the .eslintrc.base.json at the root of the workspace and add the following depConstraints in the @nx/enforce-module-boundaries rule configuration:

.eslintrc.base.json
1{ 2 ... 3 "overrides": [ 4 { 5 ... 6 "rules": { 7 "@nx/enforce-module-boundaries": [ 8 "error", 9 { 10 "enforceBuildableLibDependency": true, 11 "allow": [], 12 "depConstraints": [ 13 { 14 "sourceTag": "*", 15 "onlyDependOnLibsWithTags": ["*"] 16 }, 17 { 18 "sourceTag": "type:feature", 19 "onlyDependOnLibsWithTags": ["type:feature", "type:ui"] 20 }, 21 { 22 "sourceTag": "type:ui", 23 "onlyDependOnLibsWithTags": ["type:ui"] 24 }, 25 { 26 "sourceTag": "scope:orders", 27 "onlyDependOnLibsWithTags": [ 28 "scope:orders", 29 "scope:products", 30 "scope:shared" 31 ] 32 }, 33 { 34 "sourceTag": "scope:products", 35 "onlyDependOnLibsWithTags": ["scope:products", "scope:shared"] 36 }, 37 { 38 "sourceTag": "scope:shared", 39 "onlyDependOnLibsWithTags": ["scope:shared"] 40 } 41 ] 42 } 43 ] 44 } 45 }, 46 ... 47 ] 48} 49
Nx 15 and lower use @nrwl/ instead of @nx/

To test it, go to your modules/products/src/lib/products.vue file and import the Orders component from the orders project:

modules/products/src/lib/products.vue
1<script setup lang="ts"> 2defineProps<{}>(); 3 4// ๐Ÿ‘‡ this import is not allowed 5import { Orders } from 'orders'; 6</script> 7 8<template> 9 <p>Welcome to Products!</p> 10</template> 11 12<style scoped></style> 13

If you lint your workspace you'll get an error now:

~/workspaceโฏ

nx run-many -t lint

1 > NX Running target lint for 5 projects 2 โœ– nx run products:lint 3 Linting "products"... 4 5 /Users/isaac/Documents/code/nx-recipes/vue-standalone/modules/products/src/lib/products.vue 6 5:1 error A project tagged with "scope:products" can only depend on libs tagged with "scope:products", "scope:shared" @nx/enforce-module-boundaries 7 5:10 warning 'Orders' is defined but never used @typescript-eslint/no-unused-vars 8 9 โœ– 2 problems (1 error, 1 warning) 10 11 Lint warnings found in the listed files. 12 13 Lint errors found in the listed files. 14 15 16 โœ” nx run orders:lint (913ms) 17 โœ” nx run e2e:lint [existing outputs match the cache, left as is] 18 โœ” nx run myvueapp:lint (870ms) 19 โœ” nx run shared-ui:lint (688ms) 20 21 โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€”โ€” 22 23 > NX Ran target lint for 5 projects (2s) 24 25 โœ” 4/5 succeeded [1 read from cache] 26 27 โœ– 1/5 targets failed, including the following: 28 - nx run products:lint 29 30
Nx 15 and lower use @nrwl/ instead of @nx/

Learn more about how to enforce module boundaries.

Migrating to a Monorepo

When you are ready to add another application to the repo, you'll probably want to move myvueapp to its own folder. To do this, you can run the convert-to-monorepo generator or manually move the configuration files.

Next Steps

Congrats, you made it!! You now know how to leverage the Nx standalone applications preset to build modular Vue applications.

Here's some more things you can dive into next:

Also, make sure you