{"id":16695158,"url":"https://github.com/davidmyersdev/makke","last_synced_at":"2026-04-17T05:32:18.901Z","repository":{"id":46785198,"uuid":"515666858","full_name":"davidmyersdev/makke","owner":"davidmyersdev","description":"A module bundler and REPL for your Node CLI tools with full TypeScript support","archived":false,"fork":false,"pushed_at":"2022-07-19T21:59:53.000Z","size":31459,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-29T23:49:58.897Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/davidmyersdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-19T16:44:16.000Z","updated_at":"2022-07-19T16:46:06.000Z","dependencies_parsed_at":"2022-09-26T21:30:50.071Z","dependency_job_id":null,"html_url":"https://github.com/davidmyersdev/makke","commit_stats":null,"previous_names":["voraciousdev/makke"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidmyersdev%2Fmakke","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidmyersdev%2Fmakke/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidmyersdev%2Fmakke/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davidmyersdev%2Fmakke/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davidmyersdev","download_url":"https://codeload.github.com/davidmyersdev/makke/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243347020,"owners_count":20276119,"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":[],"created_at":"2024-10-12T17:05:41.431Z","updated_at":"2025-12-30T05:56:21.545Z","avatar_url":"https://github.com/davidmyersdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# makke\n\nA module bundler and REPL for your Node CLI tools with full TypeScript support\n\n![`makke dev`](screenshot.png)\n\n## Getting Started\n\nWith your preferred package manager, add `makke` as a dev dependency.\n\n```sh\n# npm\nnpm i makke -D\n\n# pnpm\npnpm i makke -D\n\n# yarn\nyarn add makke -D\n```\n\n### Add your config file\n\nCreate a file called `makke.config.ts` in your project root.\n\n```ts\nimport { defineConfig } from 'makke'\nimport { dependencies } from './package.json' assert { type: 'json' }\n\nexport default defineConfig({\n  // Alias your commands to make them easier to run.\n  aliases: [\n    'makke',\n  ],\n  esbuild: {\n    entryPoints: ['./src/index.ts'],\n    external: Object.keys(dependencies),\n    outfile: './dist/bundle.js',\n    tsconfig: './tsconfig.json',\n  },\n})\n```\n\n### Add scripts to your `package.json` file\n\nAdd the following scripts to your `package.json` file.\n\n```json\n{\n  \"scripts\": {\n    \"dev\": \"makke dev\",\n    \"build\": \"makke build\"\n  }\n}\n```\n\n### Ignore the `.makke` folder\n\nMake sure you add `.makke` to your `.gitignore`. This folder is used to cache files in development.\n\n### Launch the REPL and start developing\n\nRunning `makke dev` starts a [REPL](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop) for you to run your custom commands. When your source files change, `makke` instantly rebuilds your project with the speed of `esbuild`.\n\n### Build for production\n\nWhen you are happy with the results of your project, run `makke build` to creation a production build.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavidmyersdev%2Fmakke","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavidmyersdev%2Fmakke","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavidmyersdev%2Fmakke/lists"}