
Product
Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.
@paypal/fastlane-sdk-loader
Advanced tools
Provides a static asset loader to fetch the latest PayPal Accelerated-Checkout components.
This version (1.x.x) loads AXO SDK v0.6 (boba).
npm install -S @paypal/fastlane-sdk-loader
Minified
Serves the minified version of the AXO script.
import { loadAxo } from "@paypal/fastlane-sdk-loader/dist/loader.esm";
loadAxo({ minified: true })
.then(() => {
console.log("minified script loaded");
return;
})
.catch((err) => {
console.log("There was an error: ", err);
});
If no options are passed, the minified script is served by default
import { loadAxo } from "@paypal/fastlane-sdk-loader/dist/loader.esm";
loadAxo()
.then(() => {
console.log("minified script loaded");
return;
})
.catch((err) => {
console.log("There was an error: ", err);
});
Unminified
Serves the unminified version of the AXO script.
import { loadAxo } from "@paypal/fastlane-sdk-loader/dist/loader.esm";
loadAxo({ minified: false })
.then(() => {
console.log("script loaded");
return;
})
.catch((err) => {
console.log("There was an error: ", err);
});
In order to test our accelerated checkout loader, we'll need to install braintree.js repo locally, which creates the final connect.js build for us to be consumed by accelerated checkout.
Run npm link in the fastlane-sdk-loader folder, then in the braintree repo, install node_modules and then npm run build. This should create a connect.js file under dist/hosted/web/{VERSION}, which should include your loader changes.
Now you can either stage it using web stage or just store it locally to be replaced wherever you were originally calling the connect file.
FAQs
Loads accelerated checkout script
The npm package @paypal/fastlane-sdk-loader receives a total of 3,692 weekly downloads. As such, @paypal/fastlane-sdk-loader popularity was classified as popular.
We found that @paypal/fastlane-sdk-loader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 27 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.

Research
More than 140 Mastra npm packages were compromised in a supply chain attack that used a typosquatted dependency to deliver a cross-platform infostealer during installation.

Research
/Security News
A new npm package tests AI malware scanners with prompt injection, safety-triggering comments, context flooding, and obfuscated JavaScript.