Home > Blockchain >  Does it make sense to use django and npm in the same project?
Does it make sense to use django and npm in the same project?

Time:10-27

I'm learning Django, I'm using Bootstrap etc. but I want to more customize for my website which build is bootstrap. I keep search and I saw that, if I want to customize bootstrap I should use bootstap-sass downloaded with npm.

Well, my question is "Does it make sense to use django and npm in the same project?" or "Should I use a different method?"

CodePudding user response:

It totally makes sense. There are projects that are build this way - like edx.org - django as the backend and some js framework as the frontend.

You can also customize and build bootstrap separately and use the output files in your Django project. This approach is easier.

  • Related