{"id":13712600,"url":"https://github.com/near/create-near-app","last_synced_at":"2025-08-10T07:36:54.164Z","repository":{"id":37415560,"uuid":"216919760","full_name":"near/create-near-app","owner":"near","description":"Create a starter app hooked up to the NEAR blockchain","archived":false,"fork":false,"pushed_at":"2025-08-07T16:53:13.000Z","size":9294,"stargazers_count":365,"open_issues_count":2,"forks_count":157,"subscribers_count":31,"default_branch":"master","last_synced_at":"2025-08-07T17:13:33.905Z","etag":null,"topics":["blockchain","react","rust","smartcontracts"],"latest_commit_sha":null,"homepage":"https://near-examples.github.io/hello-near-examples/","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/near.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-10-22T22:20:13.000Z","updated_at":"2025-07-24T11:50:23.000Z","dependencies_parsed_at":"2024-01-02T16:32:42.644Z","dependency_job_id":"38b302e6-6ccb-43e8-82ea-1da06d55a538","html_url":"https://github.com/near/create-near-app","commit_stats":{"total_commits":926,"total_committers":30,"mean_commits":"30.866666666666667","dds":0.6717062634989202,"last_synced_commit":"ac87c28b956b7feb66d4ce324b8d173956902ebd"},"previous_names":[],"tags_count":72,"template":false,"template_full_name":null,"purl":"pkg:github/near/create-near-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/near%2Fcreate-near-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/near%2Fcreate-near-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/near%2Fcreate-near-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/near%2Fcreate-near-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/near","download_url":"https://codeload.github.com/near/create-near-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/near%2Fcreate-near-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269379362,"owners_count":24407404,"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","status":"online","status_checked_at":"2025-08-08T02:00:09.200Z","response_time":72,"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":["blockchain","react","rust","smartcontracts"],"created_at":"2024-08-02T23:01:20.193Z","updated_at":"2025-08-10T07:36:54.056Z","avatar_url":"https://github.com/near.png","language":"JavaScript","funding_links":[],"categories":["Project Starter","Web3 and ZKP Framework","Smart Contract Platforms"],"sub_categories":[],"readme":"# Create NEAR App\n\n[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/nearprotocol/create-near-app) \n\nQuickly build apps backed by the [NEAR](https://near.org) blockchain\n\n\n## Prerequisites\n\nMake sure you have a [current version of Node.js](https://nodejs.org) installed – we are targeting versions `16+` for JS contracts and `18+` for frontend/gateways.\n\nRead about other [prerequisites](https://docs.near.org/build/smart-contracts/quickstart#prerequisites) in our docs.\n\n## Getting Started\n\nTo create a new NEAR project run this and follow interactive prompts:\n\n    npx create-near-app@latest\n\nFollow the instructions in the README.md in the project you just created! 🚀\n\n\n### Contracts\nYou can create contracts written in:\n- `Javascript`\n- `Rust`\n\n:::\nWe strongly recommend you to follow our [smart contract quickstart](https://docs.near.org/build/smart-contracts/quickstart) if you are new to NEAR contracts.\n:::\n\nFor testing we use a sandboxed environment. You can write the tests in JavaScript or Rust.\n\n### WebApps\n\nYou can create a web application in:\n\n- [Next (Pages Router)](https://nextjs.org/docs/pages/building-your-application/routing)\n- [Next (App Router)](https://nextjs.org/docs/app/building-your-application/routing)\n\n\n:::\nWe strongly recommend you to follow our [web app quickstart](https://docs.near.org/build/web3-apps/quickstart) if you are new to NEAR WebApps.\n:::\n\n\u003e Consider using `pnpm` to handle the frontend, since it is much faster than `npm` and `yarn`.\n\n## Using CLI arguments to run `create-near-app`\n\nThis CLI supports arguments to skip interactive prompts:\n\n```shell\nnpx create-near-app\n  \u003cproject-name\u003e\n  --frontend next-app|next-page|none\n  --contract js|rs|none\n  --install\n```\n\nUse `--install` to automatically install dependencies from all `package.json` files.\n\nWhen using arguments, all arguments are required, except for `--install`.\n\n## Getting Help\n\nCheck out our [documentation](https://docs.near.org) or chat with us on [Discord](http://near.chat). We'd love to hear from you!\n\n\n## Contributing to `create-near-app`\n\nTo make changes to `create-near-app` itself:\n\n* clone the repository (Windows users, [use `git clone -c core.symlinks=true`](https://stackoverflow.com/a/42137273/249801))\n* in your terminal, enter one of the folders inside `templates`, such as `templates/frontend/next-app`\n* now you can run `pnpm install` to install dependencies and `pnpm run dev` to run the local development server, just like you can in a new app created with `create-near-app`\n\n\n#### About commit messages\n\n`create-near-app` uses semantic versioning and auto-generates nice release notes \u0026 a changelog all based off of the commits. We do this by enforcing [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). In general the pattern mostly looks like this:\n\n    type(scope?): subject  #scope is optional; multiple scopes are supported (current delimiter options: \"/\", \"\\\" and \",\")\n\nReal world examples can look like this:\n\n    chore: run tests with GitHub Actions\n\n    fix(server): send cors headers\n\n    feat(blog): add comment section\n\nIf your change should show up in release notes as a feature, use `feat:`. If it should show up as a fix, use `fix:`. Otherwise, you probably want `refactor:` or `chore:`. [More info](https://github.com/conventional-changelog/commitlint/#what-is-commitlint)\n\n\n#### Deploy `create-near-app`\n\nIf you want to deploy a new version, you will need two prerequisites:\n\n1. Get publish-access to [the NPM package](https://www.npmjs.com/package/near-api-js)\n2. Get write-access to [the GitHub repository](https://github.com/near/near-api-js)\n3. Obtain a [personal access token](https://gitlab.com/profile/personal_access_tokens) (it only needs the \"repo\" scope).\n4. Make sure the token is [available as an environment variable](https://github.com/release-it/release-it/blob/master/docs/environment-variables.md) called `GITHUB_TOKEN`\n\nThen run one script:\n\n    npm run release\n\nOr just `release-it`\n\n\n## License\n\nThis repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0).\nSee [LICENSE](LICENSE) and [LICENSE-APACHE](LICENSE-APACHE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnear%2Fcreate-near-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnear%2Fcreate-near-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnear%2Fcreate-near-app/lists"}