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
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,36 @@ To run tests, execute:

Look at the end of the [Gruntfile](/Gruntfile.js) for other common tasks.

### How to run project locally

- Make sure that you run these commands using Node `v16.x.x`.

- Clone the project:

```bash
git clone [email protected]:jsonwebtoken/jsonwebtoken.github.io.git
```
- Make the project directory your current directory:

```bash
cd jsonwebtoken.github.io
```

- Install required dependencies:

```bash
npm install
```
- Build the project:

```bash
npm run build
```
- Run the development server:

```bash
npm run start
```
- Visit: [http://localhost:3000](http://localhost:3000)

### Happy hacking!