Socket
Socket
Sign inDemoInstall

super-social-sdk

Package Overview
Dependencies
93
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    super-social-sdk

The SDK contains logic and components for Social vertical (feed, profiles, chat, etc.). The implementation uses Vue.js and the SDK itself is exported as a Vue plugin for easy usage & implementation in 3rd party projects.


Version published
Weekly downloads
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

super-social-sdk

The SDK contains logic and components for Social vertical (feed, profiles, chat, etc.). The implementation uses Vue.js and the SDK itself is exported as a Vue plugin for easy usage & implementation in 3rd party projects.

Features

  • ES6 syntax, managed with Prettier + Eslint and Stylelint
  • Unit testing via Jest

Install

yarn add super-social-sdk
// or 
npm i super-social-sdk

Requirements

  • Node.js v14.x or later
  • Vue
  • Vuex

Usage

import { SuperSocialProfile } from 'super-social-sdk';
import Vue from 'vue';
import router from './router';
import store from './store'
import App from './App';

new Vue({
  name: 'Root',
  router,
  store,
  mounted () {
    SuperSocialProfile({
      baseUrl: process.env.BASE_URL,
      key: process.env.KEY,
    })
  },
  render: h => h(App)
}).$mount('#app')

FAQs

Last updated on 11 Jan 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc