Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
kpp-admin-panel
Advanced tools
این پنل مدیریت پیادهسازی شده است با Angular CLI ورژن 15.1.0
۱. مثل حالت عادی و با استفاده از دستور زیر یک پروژهی جدید انگولاری را ایجاد کنید و سپس به داخل پوشه پروژه بروید.
دقت کنید هنگام نصب پروژه جدید انگولار حتما بایستی به سوالی که در خصوص استفاده
routing
در انگولار پاسخ مثبت داده شود.
ng new my-project
cd my-project
۲. با استفاده از دستور زیر کتابخانه پنل مدیریت را نصب کنید.
npm i kpp-admin-panel
۳. بعد از نصب کامل کتابخانه فایل app.routing.ts
را باز کرده و مقدار متغیر routes به شکل زیر تغییر دهید.
const routes: Routes = [
{
title: "home",
path: "",
component: FullLayoutComponent,
children: [
]
}
];
توجه: مابقی routingها بایستی در قسمت children قرار داده شوند.
۴. فایل index.html
موجود در پوشه اصلی پروژه را باز کرده و داخل متاتگ html
صفت lang
را به زبان پیشفرض سایت که
غالبا fa
میباشد تغییر دهید.
<html lang="fa">
۵. فایل app.module.ts
را باز کرده و ماژول KppAdminPanelModule
را هم در قسمت imports
و هم در قسمت exports
قرار
دهید.
۶. فایل app.component.html را باز کرده و تمام محتوای آن را حذف و تگ lib-kpp-admin-panel را داخل آن قرار دهید.
<lib-kpp-admin-panel></lib-kpp-admin-panel>
۷. فایل angular.json موجود در ریشه پروژه را باز کرده و در قسمت assets مقادیر زیر را اضافه کنید.
"assets": [
...,
{
"glob": "**/*",
"input": "node_modules/kpp-admin-panel/assets/",
"output": "/assets/"
},
...
],
۸. با زدن دستور ng serve
از پنل ادمین استفاده کنید. :shipit:
ng serve
FAQs
Unknown package
The npm package kpp-admin-panel receives a total of 2 weekly downloads. As such, kpp-admin-panel popularity was classified as not popular.
We found that kpp-admin-panel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.