Socket
Socket
Sign inDemoInstall

roshan

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

roshan

Tool library to structure Vue project


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Roshan

npm

让 Vue 支持领域驱动设计(Domain-driven design)的插件

功能

  • 🖖基于 Vue3 开发
  • 👊支持类型,使用 Typescript 编写

安装

npm install roshan
# or
yarn add roshan

使用

首先创建 module.js

import { createRoshan } from 'roshan';

import { AppModule } from './modules/app/module';

export const { roshan } = createRoshan(AppModule);

然后在 main.js 使用

import { createApp } from 'vue';
import { createRoshan } from 'roshan';

import App from './app.vue';
import { roshan } from './module';

const app = createApp(App);

app.use(roshan);

app.mount('#app');

授权

MIT

FAQs

Package last updated on 09 Sep 2021

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc