{"id":20078704,"url":"https://github.com/wpdas/create-alem-dapp","last_synced_at":"2025-08-03T23:40:56.775Z","repository":{"id":226116259,"uuid":"767802456","full_name":"wpdas/create-alem-dapp","owner":"wpdas","description":"Create initial Além dApp bundle. Além is a web3 JavaScript / TypeScript library to create web3 apps for Near BOS.","archived":false,"fork":false,"pushed_at":"2024-05-16T21:59:18.000Z","size":71,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-02T13:14:41.023Z","etag":null,"topics":["alem","app","create","dapp"],"latest_commit_sha":null,"homepage":"https://alem.dev","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/wpdas.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":"roadmap.md","authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-05T23:23:36.000Z","updated_at":"2024-05-16T22:00:18.000Z","dependencies_parsed_at":"2024-05-16T22:45:27.512Z","dependency_job_id":"918ef7d0-1b59-4bfb-ac18-ebb5d2f887f9","html_url":"https://github.com/wpdas/create-alem-dapp","commit_stats":null,"previous_names":["wpdas/create-alem-dapp"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/wpdas/create-alem-dapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpdas%2Fcreate-alem-dapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpdas%2Fcreate-alem-dapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpdas%2Fcreate-alem-dapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpdas%2Fcreate-alem-dapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wpdas","download_url":"https://codeload.github.com/wpdas/create-alem-dapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wpdas%2Fcreate-alem-dapp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268629701,"owners_count":24281172,"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-03T02:00:12.545Z","response_time":2577,"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":["alem","app","create","dapp"],"created_at":"2024-11-13T15:16:17.013Z","updated_at":"2025-08-03T23:40:56.725Z","avatar_url":"https://github.com/wpdas.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Create Alem DApp\n\n\u003cimg alt=\"Logo\" align=\"right\" src=\"https://cdn.jsdelivr.net/gh/wpdas/create-alem-dapp@0.1.0/docs/create-alem-dapp-logo.png\" width=\"14%\" /\u003e\n\nCreate dApps with no build configuration and deploy them to NEAR Bos (NEAR blockchain).\n\nGet to know more about [**Alem Library**](https://github.com/wpdas/alem).\n\nCreate Alem dApp works on macOS, Windows, and Linux.\u003cbr\u003e\nIf something doesn’t work, please file an issue.\u003cbr\u003e\nIf you have questions or need help, please ask in the [Alem Discussions](https://t.me/alemlib/8).\n\n## Quick Overview\n\n```sh\nnpx create-alem-dapp my-app\ncd my-app\nnpm start\n```\n\nIf you want to use Typescript, you can use the typescript template like so:\n\n```sh\nnpx create-alem-dapp my-app --template typescript\ncd my-app\nnpm start\n```\n\nOr even using Tailwind:\n\n```sh\nnpx create-alem-dapp my-app --template typescript-tailwind\ncd my-app\nnpm start\n```\n\n\u003cp align='center'\u003e\n\u003cimg src='./docs/create-alem-dapp-script-demo.gif' width='420' alt='npx create-alem-dapp my-app'\u003e\n\u003c/p\u003e\n\n## Creating an App\n\n**You’ll need to have Node 18.0.0 or later version on your local development machine**. You can use [nvm](https://github.com/creationix/nvm#installation) (macOS/Linux) or [nvm-windows](https://github.com/coreybutler/nvm-windows#node-version-manager-nvm-for-windows) to switch Node versions between different projects.\n\nTo create a new app, you may choose one of the following methods:\n\n### Npx\n\n```sh\nnpx create-alem-dapp my-app\n```\n\n### Yarn\n\n```sh\nyarn create alem-dapp my-app\n```\n\nIt will create a directory called `my-app` inside the current folder.\u003cbr\u003e\nInside that directory, it will generate the initial project structure and install the dependencies:\n\nNo configuration or complicated folder structures, only the files you need to build your app.\u003cbr\u003e\nOnce the installation is done, you can open your project folder:\n\n```sh\ncd my-app\n```\n\nInside the newly created project, you can run some built-in commands:\n\n### `npm start` or `yarn start`\n\nRuns the app in development mode.\u003cbr\u003e\nIf it doesn't open automatically, open [http://localhost:8080](http://localhost:8080) or [http://127.0.0.1:8080](http://127.0.0.1:8080) to view it in the browser.\n\nThe page will automatically reload if you make changes to the code.\u003cbr\u003e\nYou will see the build errors and lint warnings in the console.\n\n## Contributing\n\nWe'd love to have your helping hand on `create-alem-dapp`!\n\n## License\n\nCreate Ale dApp is open source software [licensed as MIT](https://github.com/wpdas/create-alem-dapp/blob/main/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwpdas%2Fcreate-alem-dapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwpdas%2Fcreate-alem-dapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwpdas%2Fcreate-alem-dapp/lists"}