Get started with PackForge
PackForge helps you discover available packages, browse their versions and use CDN files directly in your applications.
1. Find a package
Start by opening the Packages page and searching for the library or package you need.
You can search by package name or description and narrow the results using available categories.
2. Open the package details
Select a package to open its details page. The package page shows important information such as the package category, available versions, release dates and CDN files.
Package pages use clean URLs such as
/packages/bootstrap
so they can be bookmarked and shared easily.
3. Choose a version
Available versions are listed from newest to oldest. If a version is marked as Latest, it represents the latest version currently available on PackForge.
4. Copy a CDN reference
When a version contains CSS, JavaScript or other CDN files, PackForge provides a ready-to-copy reference for each file.
CSS
<link href="https://cdn.packforge.ir/{file-path}" rel="stylesheet">
JavaScript
<script src="https://cdn.packforge.ir/{file-path}"></script>
On the package details page you can use the Copy button to copy the complete CDN reference without selecting the text manually.
5. Use the file in your project
Paste the copied reference into your application.
CSS references are normally added inside the
<head> section of your HTML page.
<head>
<link href="https://cdn.packforge.ir/{file-path}"
rel="stylesheet">
</head>
JavaScript files are commonly added near the end
of the page before the closing
</body> tag.
<body>
...
<script src="https://cdn.packforge.ir/{file-path}"></script>
</body>
What if the package isn't available?
If you can't find the package or version you need, you can submit a request through PackForge's Notify Me feature.
When the requested package or version becomes available, PackForge can notify subscribed users through their registered email address.