Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

blip-components

Package Overview
Dependencies
Maintainers
4
Versions
222
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blip-components

Shared components used in portal.blip.ai

  • 9.75.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45
decreased by-4.26%
Maintainers
4
Weekly downloads
 
Created
Source

npm

(DEPRECATED) blip-components

BLiP components to use in AngularJS (1.x) applications.

How run components in local machine

To run blip-components on your machine, you need to follow these steps: npm link - this command will run npm install and also generate the local library on your machine. After that, it is necessary to run the command npm run build a first time and for each change that is made.

In the project where this library is being used, it's necessary to run the command npm link blip-components and then run the project normally.

Usage

Install blip-components via npm:

$ npm install blip-components

Then, use it as module on your angularjs application

import * as blipComponents from 'blip-components';
import 'blip-components/dist/blip-components.css';

const componentNames = components =>
    Object.keys(components).map(c => components[c]);

const app = angular
    .module('myApp', [
        ...componentNames(blipComponents)
    ])
    ...

You can also use each component separately

import { BlipInputComponent } from 'blip-components';
import 'blip-components/dist/blip-components.css';

const app = angular
    .module('myApp', [
        BlipInputComponent
    ])
    ...

Remeber to import the css file to style your components

Building

If you want to contribute to our project, clone this project and, on root directory, run npm start. A new process will be started on port 3000, and all changes will be tracked.

To finish a build, run npm run build.

Want to contribute?

If you want to do a commit, all you need to do is run npm run commit and you will get the prompts needed to start a commit!

Follow contributing guidelines as described here

License

blip-components is under the ISC license.

FAQs

Package last updated on 01 Feb 2024

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