n8n/docs/quick-start.md
2020-04-21 16:03:19 +02:00

947 B

Quick Start

Give n8n a spin

To spin up n8n, you can run:

npx n8n

It will download everything that is needed to start n8n.

You can then access n8n by opening: http://localhost:5678

Start with docker

To play around with n8n, you can also start it using docker:

docker run -it --rm \
  --name n8n \
  -p 5678:5678 \
  n8nio/n8n

Be aware that all the data will be lost once the docker container gets removed. To persist the data mount the ~/.n8n folder:

docker run -it --rm \
  --name n8n \
  -p 5678:5678 \
  -v ~/.n8n:/root/.n8n \
  n8nio/n8n

More information about the Docker setup can be found in the README file of the Docker Image.

In case you run into issues, check out the troubleshooting page or ask for help in the community forum.