Search Gradle plugins

com.palawanframe.node

Build your node frontend application along with your gradle base backend application. Plugin manages various node packagers and their execution. Enables compilation of node base project without need of installing NodeJS - all done via local download.

https://github.com/langrp/gradle-node-plugin

Sources: https://github.com/langrp/gradle-node-plugin

Version 0.1

Created 23 January 2022.


Build your node frontend application along with your gradle base backend application. Plugin manages
various node packagers and their execution. Enables compilation of node base project without need
of installing NodeJS - all done via local download.

Using the plugins DSL:

plugins {
  id("com.palawanframe.node") version "0.1"
}

Using legacy plugin application:

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

apply(plugin = "com.palawanframe.node")

Using the plugins DSL:

plugins {
  id "com.palawanframe.node" version "0.1"
}

Using legacy plugin application:

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

apply plugin: "com.palawanframe.node"

Learn how to apply plugins to subprojects