{"id":27652376,"url":"https://github.com/jhordyess/express-ts-webpack-starter","last_synced_at":"2025-04-24T05:02:26.229Z","repository":{"id":289496682,"uuid":"970281152","full_name":"jhordyess/express-ts-webpack-starter","owner":"jhordyess","description":"Starter project for using Express with TypeScript, powered by Webpack.","archived":false,"fork":false,"pushed_at":"2025-04-23T14:57:21.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-23T15:50:56.371Z","etag":null,"topics":["eslint","expressjs","husky","prettier","typescript","webpack","yarn"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/jhordyess.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,"zenodo":null}},"created_at":"2025-04-21T19:10:07.000Z","updated_at":"2025-04-23T14:57:24.000Z","dependencies_parsed_at":"2025-04-23T15:51:02.484Z","dependency_job_id":"de69ff57-af2f-475b-8217-c051c62eef3b","html_url":"https://github.com/jhordyess/express-ts-webpack-starter","commit_stats":null,"previous_names":["jhordyess/express-ts-webpack-starter"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhordyess%2Fexpress-ts-webpack-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhordyess%2Fexpress-ts-webpack-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhordyess%2Fexpress-ts-webpack-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhordyess%2Fexpress-ts-webpack-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jhordyess","download_url":"https://codeload.github.com/jhordyess/express-ts-webpack-starter/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250566453,"owners_count":21451230,"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":["eslint","expressjs","husky","prettier","typescript","webpack","yarn"],"created_at":"2025-04-24T05:01:14.289Z","updated_at":"2025-04-24T05:02:26.195Z","avatar_url":"https://github.com/jhordyess.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Express TypeScript Webpack Starter\n\nThis is a starter project for building a backend application using Express, TypeScript, and Webpack.\n\n## Features\n\n- **Express**: Fast and minimalist web framework for Node.js. (v. 5)\n- **TypeScript**: Strongly typed JavaScript for better development experience. (v. 5)\n- **Webpack**: Module bundler for compiling and optimizing the code. (v. 5)\n- **ESLint**: Linting for maintaining code quality. (v. 9)\n- **Prettier**: Code formatting for consistent style. (v. 3)\n- **Husky**: Git hooks for enforcing pre-push checks. (v. 9)\n- **Yarn**: Package manager for managing dependencies. (v. 4)\n\n## Prerequisites\n\n1. Install [Node.js](https://nodejs.org/en/download) (LTS version recommended).\n2. Enable Corepack to use a stable version of Yarn:\n\n```sh\ncorepack enable\n```\n\n## Getting Started\n\n1. Clone the repository:\n\n```sh\ngit clone https://github.com/jhordyess/express-ts-webpack-starter.git\n```\n\n2. Navigate to the project folder:\n\n```sh\ncd express-ts-webpack-starter\n```\n\n3. Install dependencies:\n\n```sh\nyarn install\n```\n\n4. Start the development server:\n\n```sh\nyarn dev\n```\n\n5. Open your browser or API client and interact with the server running at [http://localhost:3000](http://localhost:3000).\n\n## Project Structure\n\n```md\nexpress-ts-webpack-starter/\n├── .env.example            # Example environment variables file.\n├── .gitignore              # List of files and directories to be ignored by version control.\n├── .prettierrc.json        # Prettier configuration file.\n├── .yarnrc.yml             # Yarn configuration file.\n├── eslint.config.js        # ESLint configuration file.\n├── package.json            # Project configuration and dependencies.\n├── README.md               # Project documentation.\n├── tsconfig.json           # TypeScript configuration file.\n├── webpack.config.js       # Webpack configuration file.\n├── yarn.lock               # Yarn lock file for dependency versions.\n├── .husky/                 # Directory for Git hooks managed by Husky.\n│   ├── pre-push            # Pre-push hook to run linting and TypeScript checks.\n├── src/\n│   ├── index.ts            # Main entry point of the application.\n│   ├── config.ts           # Configuration file for the application.\n```\n\n## Commands\n\n### Start the development server\n\n```sh\nyarn dev\n```\n\n### Build the project for production\n\n```sh\nyarn build\n```\n\n### Start the production server\n\n```sh\nyarn start\n```\n\n### Run TypeScript checks\n\n```sh\nyarn ts-check\n```\n\n### Lint the code\n\n```sh\nyarn lint\n```\n\n### Validate the project (lint + TypeScript checks)\n\n```sh\nyarn validate\n```\n\n### Format the code\n\n```sh\nyarn format\n```\n\n## Contributing\n\nContributions are welcome! If you find any issues or want to enhance the project, feel free to submit a pull request.\n\n---\n\nHappy coding!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhordyess%2Fexpress-ts-webpack-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjhordyess%2Fexpress-ts-webpack-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhordyess%2Fexpress-ts-webpack-starter/lists"}