Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
This template should help get you started developing with Vue 3 in Vite.
Проект находится в активной разработке и в любой момент могут быть добавлены обратно несовместимые изменения. Поэтому рекомендуется при установке фиксировать версию пока не выйдет релиз первой стабильной версии (1.0.0)
npm i choco-ui@0.7.0
npm i choco-ui
Создав PR, в комментариях вы получите уникальный preview storybook url от github бота, в качестве префикс возьмется название вашей ветки.
Этот URL можете расшейрить своим тестировщикам, дизайнерам.
Под капотом netlify-cli + github actions.
Storybook для ветки main - https://choco-ui.netlify.app/
VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).
.vue
Imports in TSTypeScript cannot handle type information for .vue
imports by default, so we replace the tsc
CLI with vue-tsc
for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue
types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:
Extensions: Show Built-in Extensions
from VSCode's command paletteTypeScript and JavaScript Language Features
, right click and select Disable (Workspace)
Developer: Reload Window
from the command palette.See Vite Configuration Reference.
npm install
npm run dev
npm run build
npm run test:unit
npm run lint
<script>
import { ChButton, ChInput } from 'choco-ui'; // Import needed components
import 'choco-ui/styles'; // Import styles for components
</script>
Styles can be imported separately in .css
files and then imported to entry file
/* css/main.css */
@import 'choco-ui/styles';
:root {
/* Custom styles */
...
}
// index.js, main.js or any other app entry file
import { createApp, h, resolveComponent } from 'vue';
import '@css/main.css';
const App = {
name: 'App',
render: () => h('h1', 'Hello, vue app')
};
const app = createApp(App);
app.mount("#app");
FAQs
This template should help get you started developing with Vue 3 in Vite.
The npm package choco-ui receives a total of 38 weekly downloads. As such, choco-ui popularity was classified as not popular.
We found that choco-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.