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
- Host: GitHub
- URL: https://github.com/angristan/ansible-nodejs
- Owner: angristan
- License: mit
- Created: 2019-02-16T17:54:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-03-27T20:35:16.000Z (about 5 years ago)
- Last Synced: 2025-03-15T15:44:59.678Z (over 1 year ago)
- Topics: ansible, debian, node, nodejs, ubuntu
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```