# sample-nx-workspace **Repository Path**: mirrors_NativeScript/sample-nx-workspace ## Basic Information - **Project Name**: sample-nx-workspace - **Description**: Nx workspace sample for multiple NativeScript apps. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-13 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Nx workspace sample for multiple NativeScript apps This sample demonstrates using NativeScript 8.1+ cli capabilities to manage multiple NativeScript apps within an [Nx workspace](https://nx.dev). ### Prerequisites * node 15+/npm 7+ is recommended * [environment setup for NativeScript](https://docs.nativescript.org/environment-setup.html) * ensure latest NativeScript cli (8.1+) is installed: ``` npm i -g nativescript ``` ### Run the apps: ``` // install dependencies for workspace yarn // run app a nx run mobile-app-a:android nx run mobile-app-a:ios // run app b nx run mobile-app-b:android nx run mobile-app-b:ios ``` ### Clean workspace anytime ``` yarn clean ```