Search Gradle plugins

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects