Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chassis/nodejs
A Chassis extension to install Node.js
https://github.com/chassis/nodejs
chassis chassis-extension nodejs wordpress
Last synced: 3 days ago
JSON representation
A Chassis extension to install Node.js
- Host: GitHub
- URL: https://github.com/chassis/nodejs
- Owner: Chassis
- Created: 2016-10-16T04:52:24.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2022-12-19T09:47:06.000Z (almost 2 years ago)
- Last Synced: 2024-04-09T22:16:39.302Z (7 months ago)
- Topics: chassis, chassis-extension, nodejs, wordpress
- Language: Puppet
- Size: 30.3 KB
- Stars: 2
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nodejs extension for Chassis
Install Nodejs within your [Chassis](http://chassis.io/) box! The PHPUnit extension automatically sets up your Chassis instance with the `phpunit` executable, for use running PHP unit tests.
## Activation
### Automated Installation
To add the phpunit extension to a Chassis box, include `chassis/nodejs` in the `extensions` list within your `config.local.yaml` file:
```yml
extensions:
- chassis/nodejs
```Then run `vagrant provision` to instruct Chassis to download and install the new extension.
### Manual Installation
Ensure you have a Chassis instance set up locally already.
```
# In your Chassis dir:
cd extensions# Grab the extension
git clone --recursive https://github.com/Chassis/nodejs.git nodejs# Reprovision
cd ..
vagrant provision
```## Specifying a major version
To specify a version of Nodejs to install, add the major version to a Chassis config file:
```
nodejs:
version: 16
```