1

Coming from C#, management of -all- dependencies was done using NuGet. In Python, PIP is used to manage python packages. Is there any de facto standard for managing Javascript and CSS library dependencies?

13
  • I dont understand the question ... typically with <link> <style> and <script> tags? Commented Nov 10, 2013 at 6:35
  • @JoranBeasley I'm looking for a tool like PIP, but for CSS/Javascript libraries, so i don't have to manually download, update and add them to my project. Commented Nov 10, 2013 at 6:51
  • typically css and js libraries are uncoupled from your project ... css libraries are just a skin that tells the browser how to display your content independent of the content itself Commented Nov 10, 2013 at 6:55
  • 1
    @JoranBeasly Sorry, what do you mean with that second sentence? I just can't believe, that Python programmers manually download and check updates for 20+ JS/CSS libraries. Commented Nov 10, 2013 at 7:06
  • Web development usually doesn't require so many packages. What are you designing, a spacecraft? Commented Nov 10, 2013 at 10:06

3 Answers 3

2

python is the language, I guess you mean some web platform like django. however, there is no javascript / css management tool at part of the platform.

Sign up to request clarification or add additional context in comments.

1 Comment

afaik this holds true for pretty much any platform ... (WRT js/css) (+1 all the same)
1

well javascript and css are their own languages ... so just use that(NuGet) to manage your js/css ... python jquery is the same as .net jquery ... if you are just looking for a javascript package manager then JAM works i think http://jamjs.org/ ...

bower.io also seems to be a sort of manager for css/js ... but the python bit was misleading ... these have nothing to do with python specifically ...

Comments

0

In the Python world, Fanstatic is probably the most widely used (framework-agnostic) solution for that purpose.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.