1. Open Fiddler to monitor traffic
2. Create a project.
3. Open the PowerShell console and type this command:
```
install-package jQuery
```
3. Observe the requests made in Fiddler
[Actual]
There's a request to the FindPackagesById() service which returns all versions of jQuery. This is very inefficient because I only want to install the __latest__ version.
[Expected]
NuGet should only request the latest of jQuery.
2. Create a project.
3. Open the PowerShell console and type this command:
```
install-package jQuery
```
3. Observe the requests made in Fiddler
[Actual]
There's a request to the FindPackagesById() service which returns all versions of jQuery. This is very inefficient because I only want to install the __latest__ version.
[Expected]
NuGet should only request the latest of jQuery.