Search Gradle plugins

Using the plugins DSL:

plugins {
  id("com.github.node-gradle.node") version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.node-gradle:gradle-node-plugin:2.1.0")
  }
}

apply(plugin = "com.github.node-gradle.node")

Using the plugins DSL:

plugins {
  id "com.github.node-gradle.node" version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.node-gradle:gradle-node-plugin:2.1.0"
  }
}

apply plugin: "com.github.node-gradle.node"

Learn how to apply plugins to subprojects