You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-10Lines changed: 7 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,14 @@
1
-
# NEAR-SDK-JS
1
+
# NEAR JavaScript SDK
2
2
3
-
## Installation
4
-
It is tested on Ubuntu 20.04, M1 Mac and Intel Mac. Other linux should also work but they're not tested.
3
+
## Quick Start
5
4
6
-
1. Make sure you have make, cmake and nodejs. On Linux, also make sure you have gcc.
7
-
2.`make setup`
5
+
Use [`create-near-app`](https://github.com/near/create-near-app) to quickly get started writing smart contracts in JavaScript on NEAR.
8
6
9
-
## Usage
7
+
npx create-near-app
10
8
11
-
1. Copy project layout including configurations from `examples/` as a starting point
12
-
2. Write smart contracts with JavaScript. You can use most npm packages that uses portable ES2020 features.
13
-
3. Build the contract with `yarn build`.
14
-
4. If no errors happens, a `<contract-name>.wasm` will be generate at `<project-dir>/build/`. It can be tested with workspaces-js and deployed to a NEAR node.
9
+
This will scaffold a basic template for you 😎
10
+
11
+
Learn more in our [Quick Start guide](https://docs.near.org/develop/quickstart-guide).
15
12
16
13
## Running Examples
17
14
There are a couple of contract examples in the project:
0 commit comments