I need to include a js library into my Shiny app. Currently I use includeHTML to include the script directly into html codes. e.g.
includeHTML(\'URL.js\') <
└──shiny ├── server.R ├── ui.R └── www ├── stylesheet.css └── js └── hoge.js
Either one of them will work
1. tags$head(HTML("")) 2. HTML(' ')