New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

vue-component-starter

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-component-starter

Vue component starter with steroids

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

Vue Component Starter

circle-ci npm version Dependencies npm downloads code style: prettier License: MIT

A vue component starter with essential features.

Features

  • Continuous Integration
  • Jest
  • Multiple builds target
  • Typescript support

More to come:

  • Automate versioning and CHANGELOG generation
  • CLI
  • Storybook

Setup

Install with yarn:

yarn add my-component

Install with npm:

npm install my-component

Usage

Basic

<template>
  <my-component :value="0" />
</template>

<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import MyComponent from 'my-component';

@Component({
  components: {
    MyComponent,
  },
})
export default class Awesome extends Vue {}
</script>

Development

  • Clone this repository
  • Install dependencies using yarn install or npm install
  • Start development server using yarn storybook or npm run storybook

📑 License

MIT License

Notes

Rollup config's heavily inspired by https://github.com/team-innovation/vue-sfc-rollup

FAQs

Package last updated on 22 Oct 2019

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