{"id":18830848,"url":"https://github.com/vwh/vwnode","last_synced_at":"2025-10-19T08:32:34.441Z","repository":{"id":255513244,"uuid":"852024728","full_name":"vwh/vwnode","owner":"vwh","description":"Quick starter template for your Node.js project includes Bun, Biomejs, Typescript and more ","archived":false,"fork":false,"pushed_at":"2024-09-28T06:15:17.000Z","size":98,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-27T17:51:39.982Z","etag":null,"topics":["biomejs","bun","docker","node-template","production","public-template","template","testing","tsup","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vwh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-04T05:07:11.000Z","updated_at":"2024-10-02T11:06:07.000Z","dependencies_parsed_at":"2024-09-08T09:36:13.408Z","dependency_job_id":null,"html_url":"https://github.com/vwh/vwnode","commit_stats":null,"previous_names":["vwh/vwnode"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vwh%2Fvwnode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vwh%2Fvwnode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vwh%2Fvwnode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vwh%2Fvwnode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vwh","download_url":"https://codeload.github.com/vwh/vwnode/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248819349,"owners_count":21166472,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["biomejs","bun","docker","node-template","production","public-template","template","testing","tsup","typescript"],"created_at":"2024-11-08T01:51:04.529Z","updated_at":"2025-10-19T08:32:34.360Z","avatar_url":"https://github.com/vwh.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003eVwNode\u003c/h1\u003e\n\u003c/div\u003e\n\n\u003cp align=\"center\"\u003e\n\u003cb\u003eQuickStarter for Node.js\u003c/b\u003e: A streamlined setup to kickstart your Node.js projects with TypeScript, Biome for linting and formatting, and support for both npm and Bun. Enhance your development workflow with efficiency and flexibility.\n\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/vwh/vwnode/actions/workflows/format-check.yml\"\u003e\n    \u003cimg src=\"https://github.com/vwh/vwnode/actions/workflows/format-check.yml/badge.svg\" alt=\"Check Format Badge\"/\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/vwh/vwnode/actions/workflows/lint.yml\"\u003e\n    \u003cimg src=\"https://github.com/vwh/vwnode/actions/workflows/lint.yml/badge.svg\" alt=\"Lint Badge\"/\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/vwh/vwnode/actions/workflows/tests.yml\"\u003e\n    \u003cimg src=\"https://github.com/vwh/vwnode/actions/workflows/tests.yml/badge.svg\" alt=\"Test Badge\"/\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/vwh/vwnode/actions/workflows/tsc.yml\"\u003e\n    \u003cimg src=\"https://github.com/vwh/vwnode/actions/workflows/tsc.yml/badge.svg\" alt=\"TSC Badge\"/\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n## 🗃️ Project Structure\n\n```bash\nvw-node/\n├── biome.json                 # Biome configuration\n├── bun.lockb                  # Bun lockfile\n├── Dockerfile                 # Docker configuration\n├── package.json               # Project metadata and dependencies\n├── package-lock.json          # npm lockfile\n├── README.md                  # Project documentation\n├── src/                       # Source files\n│   └── index.ts               # Main TypeScript file\n├── tests/                     # Test files\n├── tsconfig.json              # TypeScript configuration\n└── tsup.config.ts             # tsup configuration\n```\n\n## 🚀 Getting Started\n\n### 📥 Installation\n\nClone the repository and install dependencies:\n\n```bash\ngit clone https://github.com/vwh/vwnode\ncd vwnode\n\n# Using bun\nbun install\n\n# Or using npm\nnpm install\n```\n\n### 💻 Development Server\n\nStart the development server:\n\n```bash\n# Using Bun\nbun run dev\n\n# Or using npm\nnpm run dev\n```\n\n### 🏗️ Build\n\nBuild the project for production:\n\n```bash\n# Using Bun\nbun run build\n\n# Or using npm\nnpm run build\n```\n\n### 🚀 Start\n\nRun the production build:\n\n```bash\n# Using Bun\nbun run start\n\n# Or using npm\nnpm run start\n```\n\n### 🧹 Linting\n\nLint the project files:\n\n```bash\n# Using Bun\nbun run lint\n\n# Or using npm\nnpm run lint\n```\n\n### 🎨 Formatting\n\nFormat the project files:\n\n```bash\n# Using Bun\nbun run format\n\n# Or using npm\nnpm run format\n```\n\nCheck the formatting:\n\n```bash\n# Using Bun\nbun run format:check\n\n# Or using npm\nnpm run format:check\n```\n\n### 🧐 Type Check\n\n```bash\n# Using Bun\nbun run type-check\n\n# Or using npm\nnpm run type-check\n```\n\n### 🐳 Docker\n\nBuild the Docker image:\n\n```bash\n# Using Bun\nbun run docker:build\n\n# Or using npm\nnpm run docker:build\n```\n\nRun the Docker image:\n\n```bash\n# Using Bun\nbun run docker:run\n\n# Or using npm\nnpm run docker:run\n```\n\n## 🤝 Contributing\n\nContributions are welcome! Feel free to open a pull request with your improvements or fixes.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvwh%2Fvwnode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvwh%2Fvwnode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvwh%2Fvwnode/lists"}