Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/develop/tools-and-features/gsoc.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ First, initialize the service node project on a machine running a full Bee node
mkdir service-node
cd service-node
npm init -y && npm pkg set type="module" && cat package.json
npm install @upcoming/bee-js --save
npm install bee-js --save
```
The command first creates the `service-node` directory, moves into that directory, initializes a `package.json` file, sets `"type": "module"` in the file, and finally installs the `bee-js` library.

Expand All @@ -137,7 +137,7 @@ Read through the code and code comments for a more in-depth understanding of how
:::

```javascript
import { Bee, NULL_IDENTIFIER } from '@upcoming/bee-js';
import { Bee, NULL_IDENTIFIER } from 'bee-js';

// Configuration
const BEE_HOST = 'http://localhost:1633'; // Change this if necessary
Expand Down Expand Up @@ -213,7 +213,7 @@ We initialize our writer node using almost the same command as our service node,
mkdir writer-node
cd writer-node
npm init -y && npm pkg set type="module" && cat package.json
npm install @upcoming/bee-js --save
npm install bee-js --save
```
The command first creates the `writer-node` directory, moves into that directory, initializes a `package.json` file, sets `"type": "module"` in the file, and finally installs the `bee-js` library.

Expand All @@ -236,7 +236,7 @@ Read through the code and code comments for a more in-depth understanding of how
:::

```javascript
import { Bee, NULL_IDENTIFIER } from '@upcoming/bee-js';
import { Bee, NULL_IDENTIFIER } from 'bee-js';

// Configuration
const BEE_HOST = 'http://localhost:1643'; // Change this if necessary
Expand Down