{"id":15888291,"url":"https://github.com/antoncoding/nos-neonad","last_synced_at":"2025-10-17T14:50:46.697Z","repository":{"id":104219863,"uuid":"135109779","full_name":"antoncoding/nOS-NeonAD","owner":"antoncoding","description":"nOS interface to work with NeonAD smart contract on NEO Blockchain","archived":false,"fork":false,"pushed_at":"2018-06-08T17:24:20.000Z","size":2739,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-08T07:25:22.084Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/antoncoding.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-05-28T04:34:52.000Z","updated_at":"2018-06-17T08:48:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"c2036473-35b6-496d-8458-f8c1892304ca","html_url":"https://github.com/antoncoding/nOS-NeonAD","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antoncoding%2FnOS-NeonAD","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antoncoding%2FnOS-NeonAD/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antoncoding%2FnOS-NeonAD/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antoncoding%2FnOS-NeonAD/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/antoncoding","download_url":"https://codeload.github.com/antoncoding/nOS-NeonAD/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246853418,"owners_count":20844576,"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-06T06:06:59.763Z","updated_at":"2025-10-17T14:50:46.619Z","avatar_url":"https://github.com/antoncoding.png","language":"JavaScript","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./logo.png\" width=\"150px\" /\u003e \n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003edapp-starter-kit\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  This is a starter-kit for creating a \u003cstrong\u003edApp\u003c/strong\u003e on the \u003cstrong\u003enOS\u003c/strong\u003e platform\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/nos/dapp-starter-kit/releases\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/tag/nos/dapp-starter-kit.svg?style=flat\"\u003e\n  \u003c/a\u003e\n  \u003ca href='https://github.com/prettier/prettier'\u003e\n    \u003cimg src='https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat'\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## Getting started\nTo get started, go to our [Getting Started](./docs/gettingStarted.md) guide. Afterwards you can check out the nOS [API documentation](https://github.com/nos/client/blob/master/docs/api.md)\n\n## Purpose\nThe goal of this project is to provide a quickstart for creating nOS dApps with React and various dependencies already installed and configured.\n\nIn this repo you can find NEO specific tooling:\n* nOS functions exposed in a store\n* neon-js, providing extra NEO functionality\n\nAlso general frameworks and tooling:\n* React, our framework of choice\n* JSS, CSS in JSS\n* Jest, a testing framework\n* Babel and Parcel, transpiling and compiling\n* Prettier and ESLint, kickass linting support\n\nSome plugins:\n* vendor prefixing, camelCase and global styling JSS plugins\n* env and React Babel presets\n* babel-polyfill\n* React and Prettier ESLint plugins\n\nAnd finally some testing and security:\n* Circle CI, automated builds/testing (coming soon)\n* Coveralls, code coverage (coming soon)\n* Deepscan and Better Code Hub, code analysis (coming soon)\n* Renovate and Gemnasium, dependency monitoring (coming soon)\n\n## Setup\n```bash\n$ git clone https://github.com/nos/dapp-starter-kit.git my-dapp\n$ cd my-dapp\n$ yarn\n$ yarn start\n```\n\nChange `README.md` and `package.json` to fit your project needs. Delete `LICENSE` if not applicable.\n\n## Testing\nUse `yarn test:local` or `npm run test:local` to run all tests locally. The `test` command is reserved for CI builds.\n\n## Document structure\n```\nreact-stack-boilerplate\n├── src\n│   ├── __helpers__\n│   ├── __mocks__\n│   ├── assets\n│   ├── components\n│   │   └── __tests__\n│   │       └── __snapshots__\n│   ├── nos\n│   └── views\n│       └── __tests__\n│           └── __snapshots__\n├── .babelrc\n├── .eslintrc\n├── .gitignore\n├── CHANGELOG.md\n├── jest.config.js\n├── jest.setup.js\n├── package.json\n├── README.md\n└── yarn.lock\n```\n\n## Known issues\n * Build assets to dedicated subdirectory https://github.com/parcel-bundler/parcel/issues/233\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantoncoding%2Fnos-neonad","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantoncoding%2Fnos-neonad","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantoncoding%2Fnos-neonad/lists"}