codenom/assets
Composer 安装命令:
composer require codenom/assets
包简介
Asset publishing and loading for CodeIgniter 4
README 文档
README
Asset publishing and loading for CodeIgniter 4
Quick Start
- Install with Composer:
> composer require codenom/assets - Put CSS & JS files in: public/assets
- Add additional assets to config: app/Config/Assets.php
- Add in head tag:
<?= service('assets')->css() ?> - Add to footer:
<?= service('assets')->js() ?>
Features
Provides out-of-the-box asset loading for CSS and JavaScript files for CodeIgniter 4
Installation
Install easily via Composer to take advantage of CodeIgniter 4's autoloading capabilities and always be up-to-date:
> composer require codenom/assets
Or, install manually by downloading the source files and adding the directory to
app/Config/Autoload.php.
Configuration (optional)
The library's default behavior can be overridden or augment by its config file. Copy examples/Assets.php to app/Config/Assets.php and follow the instructions in the comments. If no config file is found the library will use its defaults.
Usage
If installed correctly CodeIgniter 4 will detect and autoload the library, service, and
config. Use the library methods css() and js() to display tags for the route-specific assets:
<?= service('assets')->css() ?>
Structure
The library searches the assets directory (default: public/assets) for files matching the current route, loading them in a cascading fashion for each route segment.
Example: https://example.com/users/view/30
The library will first load any root assets (public/assets/*.css *.js), then assets in
the "users" subfolder (public/assets/users/), then "view" subfolder, then "12" subfolder.
Any missing or invalid folders are ignored.
Additional assets may be specified from the config variable $routes - this is particularly
helpful for including pre-bundled libraries. $routes maps each route to an asset file or
a directory of assets to load for that route.
Example:
public $routes = [
'' => [
'bootstrap/dist/css/bootstrap.min.css',
'bootstrap/dist/js/bootstrap.bundle.min.js'
],
'files/upload' => [
'vendor/dropzone'
]
];
This tells the library to load the Bootstrap assets for every route ('') without having
to move it from its pre-bundled subdirectory. It also will load any assets in the dropzone
directory for the specified route.
codenom/assets 适用场景与选型建议
codenom/assets 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 32 次下载、GitHub Stars 达 1, 最近一次更新时间为 2020 年 07 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「assets」 「javascript」 「css」 「codeigniter」 「loader」 「codeigniter4」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 codenom/assets 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 codenom/assets 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 codenom/assets 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Generates a Blade directive exporting all of your named Laravel routes. Also provides a nice route() helper function in JavaScript.
Asset Management for PHP
A Twig extension to insert css as inline styles with a tag
Caching and compression for Twig assets (JavaScript and CSS).
A pretty nice way to expose your translation messages to your JavaScript.
PHP client for the Google Closure Compiler API in one file.
统计信息
- 总下载量: 32
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-07-25