{"id":51595964,"url":"https://github.com/petarjs/bas-info","last_synced_at":"2026-07-11T18:42:41.747Z","repository":{"id":79496294,"uuid":"47154150","full_name":"petarjs/bas-info","owner":"petarjs","description":"BAS scraper and react app","archived":false,"fork":false,"pushed_at":"2016-02-06T15:23:01.000Z","size":697,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-08-23T06:27:00.312Z","etag":null,"topics":[],"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/petarjs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-12-01T00:10:54.000Z","updated_at":"2016-02-06T15:23:02.000Z","dependencies_parsed_at":"2023-04-28T09:01:14.154Z","dependency_job_id":null,"html_url":"https://github.com/petarjs/bas-info","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/petarjs/bas-info","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petarjs%2Fbas-info","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petarjs%2Fbas-info/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petarjs%2Fbas-info/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petarjs%2Fbas-info/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/petarjs","download_url":"https://codeload.github.com/petarjs/bas-info/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petarjs%2Fbas-info/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35372639,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-11T02:00:05.354Z","response_time":104,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":"2026-07-11T18:42:40.605Z","updated_at":"2026-07-11T18:42:41.741Z","avatar_url":"https://github.com/petarjs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## React Starter Kit — \"isomorphic\" web app boilerplate\n\n[![Support us on Bountysource](https://dl.dropboxusercontent.com/u/16006521/react-starter-kit/banner.png)](https://salt.bountysource.com/teams/react-starter-kit)\u003cbr\u003e\n\n\u003e [React Starter Kit](http://www.reactstarterkit.com) is an opinionated\n\u003e boilerplate for web development built on top of Facebook's\n\u003e [React](https://facebook.github.io/react/) library,\n\u003e [Node.js](https://nodejs.org/) / [Express](http://expressjs.com/) server\n\u003e and [Flux](http://facebook.github.io/flux/) architecture. Containing\n\u003e modern web development tools such as [Webpack](http://webpack.github.io/),\n\u003e [Babel](http://babeljs.io/) and [BrowserSync](http://www.browsersync.io/).\n\u003e Helping you to stay productive following the best practices. A solid starting\n\u003e point for both professionals and newcomers to the industry.\n\nDemo: http://demo.reactstarterkit.com \u0026nbsp;|\u0026nbsp;\nJoin [#react-starter-kit](https://gitter.im/kriasoft/react-starter-kit) chatroom on Gitter to stay up to date.\n\n### Documentation\n\n  * **General**\n    - [React Style Guide](./docs/react-style-guide.md)\n    - [How to configure text editors and IDEs](./docs/how-to-configure-text-editors.md)\n  * **Questions**\n    - [Which module bundler should I use?](https://github.com/kriasoft/react-starter-kit/issues/3)\n    - [Which Flux implementation should I use?](https://github.com/kriasoft/react-starter-kit/issues/22)\n  * **Recipes**\n    - [How to Implement Routing and Navigation](./docs/recipes/how-to-implement-routing.md)\n    - [How to Integrate Disqus](./docs/recipes/how-to-integrate-disqus.md)\n\n### Directory Layout\n\n```\n.\n├── /build/                     # The folder for compiled output\n├── /docs/                      # Documentation files for the project\n├── /node_modules/              # 3rd-party libraries and utilities\n├── /src/                       # The source code of the application\n│   ├── /actions/               # Action creators that allow to trigger a dispatch to stores\n│   ├── /api/                   # REST API / Relay endpoints\n│   ├── /components/            # React components\n│   ├── /constants/             # Constants (action types etc.)\n│   ├── /content/               # Static content (plain HTML or Markdown, Jade, you name it)\n│   ├── /core/                  # Core framework and utility functions\n│   ├── /decorators/            # Higher-order React components\n│   ├── /public/                # Static files which are copied into the /build/public folder\n│   ├── /stores/                # Stores contain the application state and logic\n│   ├── /app.js                 # Client-side startup script\n│   ├── /config.js              # Global application settings\n│   ├── /routes.js              # Universal (isomorphic) application routes\n│   └── /server.js              # Server-side startup script\n├── /tools/                     # Build automation scripts and utilities\n│   ├── /lib/                   # Library for utility snippets\n│   ├── /build.js               # Builds the project from source to output (build) folder\n│   ├── /bundle.js              # Bundles the web resources into package(s) through Webpack\n│   ├── /clean.js               # Cleans up the output (build) folder\n│   ├── /webpack.config.js      # Configurations for client-side and server-side bundles\n│   ├── /copy.js                # Copies static files to output (build) folder\n│   ├── /deploy.js              # Deploys your web application\n│   ├── /run.js                 # Helper function for running build automation tasks\n│   ├── /serve.js               # Launches the Node.js/Express web server\n│   └── /start.js               # Launches the development web server with \"live reload\"\n│── package.json                # The list of 3rd party libraries and utilities\n└── preprocessor.js             # ES6 transpiler settings for Jest\n```\n\n### Getting Started\n\nJust clone the repo and start hacking:\n\n```shell\n$ git clone -o react-starter-kit -b master --single-branch \\\n      https://github.com/kriasoft/react-starter-kit.git MyApp\n$ cd MyApp\n$ npm install                   # Install Node.js components listed in ./package.json\n$ npm start                     # Compile and launch\n```\n\n### How to Build\n\n```shell\n$ npm run build                 # or, `npm run build -- --release`\n```\n\nBy default, it builds in *debug* mode. If you need to build in release\nmode, just add a `-- --release` flag. This will optimize the output bundle for\nproduction.\n\n### How to Run\n\n```shell\n$ npm start                     # or, `npm start -- --release`\n```\n\nThis will start a light-weight development server with \"live reload\" and\nsynchronized browsing across multiple devices and browsers.\n\n### How to Deploy\n\n```shell\n$ npm run deploy                # or, `npm run deploy -- --production`\n```\n\nFor more information see `tools/deploy.js`.\n\n### How to Update\n\nYou can always fetch and merge recent changes from this repo back into\nyour own project:\n\n```shell\n$ git checkout master\n$ git fetch react-starter-kit\n$ git merge react-starter-kit/master\n$ npm install\n```\n\n### How to Test\n\nRun unit tests powered by [Jest](https://facebook.github.io/jest/) with the following\n[npm](https://www.npmjs.org/doc/misc/npm-scripts.html) command:\n\n```shell\n$ npm test\n```\n\nTest any javascript module by creating a `__tests__/` directory where\nthe file is. Append `-test.js` to the filename and [Jest](https://facebook.github.io/jest/) will do the rest.\n\n### Our Sponsors\n\n[![Rollbar](https://dl.dropboxusercontent.com/u/16006521/react-starter-kit/rollbar.png)](https://rollbar.com/?utm_source=reactstartkit(github)\u0026utm_medium=link\u0026utm_campaign=reactstartkit(github)) \u0026nbsp;\u0026nbsp;\u0026nbsp;\n[![Makers Academy](https://dl.dropboxusercontent.com/u/16006521/react-starter-kit/makers-academy.png)](http://www.makersacademy.com/?utm_source=ReactStarterKit\u0026utm_medium=link\u0026utm_campaign=ReactStarterKitGithub)\n\n### Related Projects\n\n  * [React Static Boilerplate](https://github.com/koistya/react-static-boilerplate) — Generates static websites from React components\n  * [Babel Starter Kit](https://github.com/kriasoft/babel-starter-kit) — Boilerplate for authoring JavaScript/React.js libraries\n  * [React Decorators](https://github.com/kriasoft/react-decorators) — A collection of higher-order React components\n\n### Learn More\n\n  * [Getting Started with React.js](http://facebook.github.io/react/)\n  * [Getting Started with GraphQL and Relay](https://quip.com/oLxzA1gTsJsE)\n  * [React.js Questions on StackOverflow](http://stackoverflow.com/questions/tagged/reactjs)\n  * [React.js Discussion Board](https://discuss.reactjs.org/)\n  * [Flux Architecture for Building User Interfaces](http://facebook.github.io/flux/)\n  * [Jest - Painless Unit Testing](http://facebook.github.io/jest/)\n  * [Flow - A static type checker for JavaScript](http://flowtype.org/)\n  * [The Future of React](https://github.com/reactjs/react-future)\n  * [Learn ES6](https://babeljs.io/docs/learn-es6/), [ES6 Features](https://github.com/lukehoban/es6features#readme)\n\n### Support\n\n  * [#react-starter-kit](https://gitter.im/kriasoft/react-starter-kit) on Gitter — Feedback, feature requests, Q\u0026A\n  * [@koistya](https://www.codementor.io/koistya) on Codementor — Mentorship, code reviews\n  * support@kriasoft.com — Customization requests, help with GraphQL/Relay back-ends etc.\n\n### License\n\nCopyright © 2014-2015 Kriasoft, LLC. This source code is licensed under the MIT\nlicense found in the [LICENSE.txt](https://github.com/kriasoft/react-starter-kit/blob/master/LICENSE.txt)\nfile. The documentation to the project is licensed under the\n[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/) license.\n\n---\nMade with ♥ by Konstantin Tarkus ([@koistya](https://twitter.com/koistya)) and [contributors](https://github.com/kriasoft/react-starter-kit/graphs/contributors)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetarjs%2Fbas-info","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpetarjs%2Fbas-info","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetarjs%2Fbas-info/lists"}