-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
606263d
commit 6ddcd82
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |