Code Monkey home page Code Monkey logo

Comments (3)

douggsky avatar douggsky commented on August 12, 2024

A workaround for this issue is to keep your implementation separate and just create a symlink for each plugin in the pdk plugins directory:

/usr/local/kong/plugins/impl/
- /myplugin1
 - node_modules/
 - package.json
 - plugin.js
- /myplugin2
 - node_modules/
 - package.json
 - plugin.js
- ... 
/usr/local/kong/plugins/link/
- myplugin1.js -> ../impl/myplugin1/plugin.js
- myplugin2.js -> ../impl/myplugin2/plugin.js
- ...

From /usr/local/kong/plugins/link/ create the symlinks:

ln -s ../impl/myplugin1/plugin.js myplugin1.js
ln -s ../impl/myplugin2/plugin.js myplugin2.js
...

You can script all this with something like the following:

for d in /usr/local/kong/plugins/impl/*/; do \
  cd $d && test -r package.json && npm install --ci && \
  cd /usr/local/kong/plugins/link/ && ln -s ../impl/$(basename $d)/plugin.js $(basename $d).js; \
done

Then modify the plugins-directory:

pluginserver_js_start_cmd = /usr/local/kong/plugins/node_modules/kong-pdk/bin/kong-js-pluginserver -v --plugins-directory /usr/local/kong/plugins/link/
pluginserver_js_query_cmd = /usr/local/kong/plugins/node_modules/kong-pdk/bin/kong-js-pluginserver --plugins-directory /usr/local/kong/plugins/link/ --dump-all-plugins

from kong-js-pdk.

akira28 avatar akira28 commented on August 12, 2024

@douggsky thanks for the response. In the end we decided to migrate all our plugins to Golang, as it seems to be better maintained and it's faster anyway. I think you should add this workaround to the docs, and close this ticket :)

from kong-js-pdk.

hanshuebner avatar hanshuebner commented on August 12, 2024

Tracking a documentation update in internal ticket KAG-2604, closing this issue.

from kong-js-pdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.