faustinoaq changed the topic of #amber to: Welcome to Amber Framework community! | https://amberframework.org | Developer happiness, productivity and bare metal performance | GH: https://github.com/amberframework | Docs: https://docs.amberframework.org | Gitter: https://gitter.im/amberframework/amber | IRC Logger: https://irclog.whitequark.org/amber | Amber::Server.start
_whitelogger has joined #amber
<FromGitter> <samholst> Hi @eliasjpr, I was inheriting from that as well. I ended up forking the shards and modifying a few elements of it to get all of it working. If you'd like -- we could PM about the changes or I could create an PR and review it over with you and see what your thoughts are.
<FromGitter> <VanyaNeytrino> Hello. How use namespace in amber controllers? When i make requets to admin/admin_users, amber request error: get "/*", Amber::Controller::Static, :index
<FromGitter> <eliasjpr> Feel@ free to push a PR
<FromGitter> <eliasjpr> Sam
<FromGitter> <VanyaNeytrino> Excuse me. Never see PR. Thank you
feepbot has quit [Ping timeout: 245 seconds]
feepbot has joined #amber
<FromGitter> <eliasjpr> Ivan that was meant for Sam
<FromGitter> <kavisha18> Hi ! Im trying to added a plugin (https://github.com/lacymorrow/album-art) in package.json file, ran npm install. It didnt work. I also tried npm install -g package and then tried to access it and it didn't work. When i try to import it in javascript using both`import albumArt from 'album-art';` and `const albumArt = require( 'album-art' );` it errors out `Uncaught Error: Cannot find module "fetch"` in index.js
<FromGitter> ... file for the mentioned plugin. maybe the local dependencies were not installed when npm install ran. Anyone who knows the correct process of getting this work?
<FromGitter> <kavisha18> Does anyone know how to access global node modules in amber framework? I'm trying to install `album-art` (https://github.com/lacymorrow/album-art) plugin. I added `"album-art": "^2.0.1"` in package.json file and ran npm install. I tried both `import albumArt from 'album-art';` and `const albumArt = require( 'album-art' )` to access it in javascript and it errors out as it's unable to access the module. I aslo
<FromGitter> ... tried installing the plugin globally using `npm install -g package` I still wasn't able to access it.