- Node.js
- (optional) near-shell
npm i -g near-shell
- (optional) yarn
npm i -g yarn
npm install && npm dev
with yarn:
yarn && yarn dev
The server that starts is for static assets and by default serves them to http://localhost:1234. Navigate there in your browser to see the app running!
NOTE: Both contract and client-side code will auto-reload once you change source files.
npm test
with yarn:
yarn test
You'll now want to authorize NEAR shell on your NEAR account, which will allow NEAR Shell to deploy contracts on your NEAR account's behalf (and spend your NEAR account balance to do so).
Type the command near login
which opens a webpage at NEAR Wallet. Follow the instructions there and it will create a key for you, stored in the /neardev
directory.
Modify src/config.js
line that sets the account name of the contract. Set it to the account id from step 1.
NOTE: When you use create-near-app to create the project it'll infer and pre-populate name of contract based on project folder name.
const CONTRACT_NAME = 'react-template'; /* TODO: Change this to your contract's name! */
const DEFAULT_ENV = 'development';
...
Check the scripts in the package.json, for frontend and backend both, run the command:
npm run deploy
with yarn:
yarn deploy
NOTE: This uses gh-pages to publish resulting website on GitHub pages. It'll only work if project already has repository set up on GitHub. Feel free to modify deploy:pages
script in package.json
to deploy elsewhere.
assembly/main.ts
for the contract codesrc/index.html
for the front-end HTMLsrc/index.js
for the JavaScript front-end code and how to integrate contractssrc/App.js
for the main React componentsrc/main.test.js
for the JavaScript integration tests of smart contractsrc/App.test.js
for the main React component tests