Skip to content

Commit

Permalink
Updating app files
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsislimadev committed Jan 5, 2025
1 parent 606263d commit 6ddcd82
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions docs/starter/installing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Installing

Assuming you’ve already installed [Node.js](https://nodejs.org/en), create a directory to hold your application, and make that your working directory.

```sh
$ mkdir myapp

$ cd myapp
```

Use the npm init command to create a package.json file for your application.

```sh
$ npm init -y
```

Install ABACKEND in the `myapp` directory and save it in the dependencies list.

```sh
$ npm i abackend
```

To install ABACKEND temporarily and not add it to the dependencies list.

```sh
$ npm install abackend --no-save
```

0 comments on commit 6ddcd82

Please sign in to comment.