Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Bootstrap and jQuery source
Message
Information générale
Forum:
Bootstrap
Catégorie:
Autre
Divers
Thread ID:
01675912
Message ID:
01676120
Vues:
40
I agree - in principle - that I should know these technologies. But there is always a matter of lack of time and capacity to learn.

>>NodeJs and NPM are way over my head (at this point).
>
>They shouldn't be - it's the tooling you want to use so it's install and then you get access to some very useful features like being able to quickly pull down libraries without having to hunt for a download link (which is getting harder and harder to find for many things).
>
>Once NPM is installed `npm install` can pull down the latest libraries and `npm update` lets you update the libraries to the latest versions. You can either use the libs directly from the `node_modules` folder, or as I typically do for non SPA applications, copy them into specific applications as needed.
>
>Additionally NodeJS is nice as you can execute JavaScript code from the command line so you can quickly check out JavaScript expressions like a VFP command line.
>
>+++ Rick ---
>
>>
>>>Bootstrap has download links for the entire framework.
>>>
>>>The jQuery site has CDN links and you can use Save As to save the files to disk - grab both the jquery.js and jquery.min.js.
>>>
>>>Put them both into a `/libs` folder.
>>>
>>>As an alternative you can use NodeJs and NPM to pull these libraries down with;
>>>
>>>
>>>npm install bootstrap jquery --save
>>>
>>>
>>>This goes into a `npm_modules` folder below where you called this from. You can then just grab the appropriate libraries from there and copy them into your project. This will be a lot of extra files, but this how they expect you to distribute them.
>>>
>>>+++ Rick ---
>>>
>>>>Hi,
>>>>
>>>>I am using the following link and scripts in an aspx page header.
>>>>
>>>>
>>>>    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" />
>>>>    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
>>>>    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
>>>>
>>>>
>>>>The above works.
>>>>
>>>>But I want replace the above with the actual files in the project. That is, to download and place the actual Bootstrap and jQuery source in my project and deploy them. I can't seem to find where to download these. Please let me know if you know.
>>>>
>>>>TIA
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform