Add an Astro Project
The code for this example is available on GitHub:
Example repository/nrwl/nx-recipes/tree/main/astro-standalone
Supported Features
Because we are not using an Nx plugin for Astro, there are few items we'll have to configure manually. We'll have to configure our own build system. There are no pre-created Astro-specific code generators. And we'll have to take care of updating any framework dependencies as needed.
✅ Run Tasks ✅ Cache Task Results ✅ Remote Caching ✅ Explore the Graph ✅ Distribute Task Execution ✅ Integrate with Editors ✅ Automate Updating Nx ✅ Enforce Project Boundaries 🚫 Use Code Generators 🚫 Automate Updating Framework Dependencies
Create an astro app
❯
npm create astro@latest
Add Nx
We can leverage nx init
to add Nx to the Astro application.
~/astro-app❯
npx nx@latest init
1NX 🐳 Nx initialization
2
3
4NX 🧑🔧 Please answer the following questions about the scripts found in your package.json in order to generate task runner configuration
5
6✔ Which of the following scripts are cacheable? (Produce the same output given the same input, e.g. build, test and lint usually are, serve and start are not). You can use spacebar to select one or more scripts. · build
7
8
9✔ Would you like remote caching to make your build faster? · Yes
10
11NX 📦 Installing dependencies
12
13NX 🎉 Done!
14
15- Enabled computation caching!
16- Learn more at https://nx.dev/recipes/adopting-nx/adding-to-existing-project.
17
You can configure a task as cacheable after the fact by updating the project configuration or the global Nx configuration. Learn more about caching task results or how caching works.
Running Tasks
Because Nx understands package.json scripts, You can run the predefined scripts via Nx.
❯
nx build
If you plan on using your package manager to run the tasks, then you'll want to use nx exec
to wrap the command
i.e.
1{
2 "scripts": {
3 "e2e": "nx exec -- playwright test"
4 }
5}
6
Now when running npm run e2e
Nx will be able to check if there is a cache hit or not.
If you plan to only run tasks with the Nx CLI, then you can omit nx exec
. The safest way is to always include it in the package.json script.
Using Other Plugins
With Nx plugins, you can create projects to help break out functionality of the project. For example, using the @nx/js:library
to contain our reusable .astro
components.
Install @nx/js
plugin.
Note: you should make sure any first party,
@nx/
scoped, plugins match thenx
package version
❯
nx add @nx/js@<nx-version>
Then generate a project
Directory Flag Behavior ChangesThe command below uses the as-provided
directory flag behavior, which is the default in Nx 16.8.0. If you're on an earlier version of Nx or using the derived
option, omit the --directory
flag. See the as-provided vs. derived documentation for more details.
1NX Generating @nx/js:library
2
3✔ Which unit test runner would you like to use? · none
4✔ Which bundler would you like to use to build the library? Choose 'none' to skip build setup. · none
5
6CREATE libs/ui/tsconfig.json
7CREATE libs/ui/README.md
8CREATE libs/ui/src/index.ts
9CREATE libs/ui/src/lib/ui.ts
10CREATE libs/ui/tsconfig.lib.json
11CREATE libs/ui/project.json
12CREATE libs/ui/.eslintrc.json
13UPDATE tsconfig.json
14
If you plan to import .astro
files within .ts
files, then you can install the @astrojs/ts-plugin
.
1{
2 "extends": "astro/tsconfigs/strict",
3 "compilerOptions": {
4 "baseUrl": ".",
5 "plugins": [
6 {
7 "name": "@astrojs/ts-plugin"
8 }
9 ],
10 "paths": {
11 "@myrepo/ui": ["ui/src/index.ts"]
12 }
13 }
14}
15
An easier option is to allow importing the files directly instead of reexporting the .astro
files via the index.ts
. You can do this by allowing deep imports in the tsconfig paths
1{
2 "extends": "astro/tsconfigs/strict",
3 "compilerOptions": {
4 "baseUrl": ".",
5 "paths": {
6 // Note: the * allowing the deep imports
7 "@myrepo/ui/*": ["ui/src/*"]
8 }
9 }
10}
11
This allows imports in our .astro
files from other projects like so.
1import Card from '@myrepo/ui/Card.astro';
2import Footer from '@myrepo/ui/Footer.astro';
3import Header from '@myrepo/ui/Header.astro';
4