Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Bootstrap and jQuery source
Message
General information
Forum:
Bootstrap
Category:
Other
Miscellaneous
Thread ID:
01675912
Message ID:
01676110
Views:
65
>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
+++ Rick ---

West Wind Technologies
Maui, Hawaii

west-wind.com/
West Wind Message Board
Rick's Web Log
Markdown Monster
---
Making waves on the Web

Where do you want to surf today?
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform