# nt **Repository Path**: neo5simple/nt ## Basic Information - **Project Name**: nt - **Description**: Neo's Tools in node - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-09 - **Last Updated**: 2025-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # NT 2025 Neo's Tools ## version Get local npm packages' version ### Vue add in `vite.config.js` ```js import { genVersions } from "nt"; // use define in config // export default defineConfig({ define: { __VERSION__: genVersions(), }, ``` use anywhere in your vue file ```js const versions = ref( __VERSION__.map((v) => `${v.name}: ${v.version}`).join("; ") ); ```