An open API service indexing awesome lists of open source software.

https://github.com/angristan/ansible-nodejs

Ansible role for Node.js
https://github.com/angristan/ansible-nodejs

ansible debian node nodejs ubuntu

Last synced: about 2 months ago
JSON representation

Ansible role for Node.js

Awesome Lists containing this project

README

          

# Ansible role for Node.js

This is a simple role that will install Node.js on Debian/Ubuntu from [Nodesource](https://github.com/nodesource/distributions).

## Installation

Add this to your `requirements.yml`:

```yml
- src: https://github.com/angristan/ansible-nodejs
```

## Sample playbook

```yaml
---

- hosts: myhost
roles:
- name: nodejs
tags: nodejs
vars:
nodejs_version: 12
```