{"id":15362205,"url":"https://github.com/doug-wade/generator-koa-react","last_synced_at":"2025-10-30T14:20:00.337Z","repository":{"id":57247699,"uuid":"55877503","full_name":"doug-wade/generator-koa-react","owner":"doug-wade","description":"A yeoman generator for creating a stack with react powered by koa","archived":false,"fork":false,"pushed_at":"2020-05-01T08:30:16.000Z","size":96,"stargazers_count":7,"open_issues_count":12,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-28T18:21:18.764Z","etag":null,"topics":["koa","yeoman","yeoman-generator"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/doug-wade.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":"2016-04-10T02:46:36.000Z","updated_at":"2023-09-01T08:40:28.000Z","dependencies_parsed_at":"2022-08-24T16:31:15.915Z","dependency_job_id":null,"html_url":"https://github.com/doug-wade/generator-koa-react","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doug-wade%2Fgenerator-koa-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doug-wade%2Fgenerator-koa-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doug-wade%2Fgenerator-koa-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doug-wade%2Fgenerator-koa-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doug-wade","download_url":"https://codeload.github.com/doug-wade/generator-koa-react/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248578864,"owners_count":21127713,"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":["koa","yeoman","yeoman-generator"],"created_at":"2024-10-01T12:59:15.706Z","updated_at":"2025-10-30T14:19:55.295Z","avatar_url":"https://github.com/doug-wade.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# generator-koa-react [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage percentage][coveralls-image]][coveralls-url]\n\u003e A yeoman generator for using react backed by koa\n\nCheck out the generated boilerplate at https://github.com/doug-wade/example-koa-react.\n\n\n## Installation\n\nFirst, install [Yeoman](http://yeoman.io) and generator-koa-react using [npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js](https://nodejs.org/)).\n\n```bash\nnpm install -g yo\nnpm install -g generator-koa-react\n```\n\nThen generate your new project:\n\n```bash\nyo koa-react\n```\n\n\n## Getting Started\n\nTo start the server, just run `npm start` and navigate to\n[localhost:3000](http://localhost:3000) in your favorite browser.\n\nTo install the build toolchain\n\n    npm install -g gulp bunyan babel\n\n\n## Directory structure\n\n    browser \u003c- the javascript source files for the browser\n    build \u003c- transpiled server-side javascript\n    public \u003c- files that are served by koa (compiled js, preprocessed css, compressed html)\n    server \u003c- the javascript source files for the server\n    styles \u003c- the styles, preprocessed\n    test \u003c- tests and fixtures\n    view \u003c- the html\n\nBecause we serve using browserify, the node api is available in the browser the\nsame as on the server, so the distinction between browser and server is a little\nhazy, and you can free require between them and reasonably expect it to work.\n\n\n## Running the tests\n\nTo run the tests, run `npm test`, or `gulp build \u0026\u0026 gulp test`, or `ava test/*.js`.\n\nWhen debugging the tests, note that the tranpiler doesn't output debugger statements,\nso you'll need to place them in the transpiled js in `build/`, or place them in the\nbrowser.\n\n\n## More in depth\n\nTo develop against the stack, you may also want to familiarize yourself with some\nof the tools here.  Here are some relevant links\n  - [babel](https://babeljs.io/)\n  - [browserify](http://browserify.org/)\n  - [es6](http://exploringjs.com/es6/)\n  - [gulp](https://gulpjs.com)\n  - [koa](koajs.com)\n  - [react](https://facebook.github.io/react/)\n  - [redux](https://redux.js.org)\n\n\n## Getting To Know Yeoman\n\nYeoman has a heart of gold. He\u0026#39;s a person with feelings and opinions, but he\u0026#39;s very easy to work with. If you think he\u0026#39;s too opinionated, he can be easily convinced. Feel free to [learn more about him](http://yeoman.io/).\n\n\n## License\n\nMIT © [Doug Wade](dougwade.io)\n\n\n[npm-image]: https://badge.fury.io/js/generator-koa-react.svg\n[npm-url]: https://npmjs.org/package/generator-koa-react\n[travis-image]: https://travis-ci.org/doug-wade/generator-koa-react.svg?branch=master\n[travis-url]: https://travis-ci.org/doug-wade/generator-koa-react\n[daviddm-image]: https://david-dm.org/doug-wade/generator-koa-react.svg?theme=shields.io\n[daviddm-url]: https://david-dm.org/doug-wade/generator-koa-react\n[coveralls-image]: https://coveralls.io/repos/doug-wade/generator-koa-react/badge.svg\n[coveralls-url]: https://coveralls.io/r/doug-wade/generator-koa-react\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoug-wade%2Fgenerator-koa-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoug-wade%2Fgenerator-koa-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoug-wade%2Fgenerator-koa-react/lists"}