npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

baasic-sdk-angularjs

v2.0.0

Published

AngularJS SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).

Readme

Baasic AngularJS SDK

Baasic AngularJS library provides integration access to Baasic REST API core end-points.

Dependencies

Baasic AngularJS library has the following dependencies:

Usage

This section will describe how to add the Baasic AngularJS library to your project. It's important to know that Baasic AngularJS SDK uses HAL+JSON format for the back-end communication. You can find out more about HAL format here.

Adding the library to your project

Please add the following lines of code after the AngularJS include:

<script src='/js/hal-parser.js'></script>
<script src='/js/uritemplate-min.js'></script>
<script src='/js/baasic-sdk-javascript-2.0.1.min.js'></script>
<script src='/js/baasic-sdk-angularjs-2.0.0.min.js'></script>

Note: Baasic JavaScript SDK uses jQuery for http communication only if JavaScript SDK is used as stand-alone library, inside the AngularJS SDK $http service is used.

Initialization

To be able to use the library you will need to add the Baasic (baasic.api) dependency to your AngularJS module.

angular.module('my-module', ["baasic.api"])

Application Configuration

Baasic AngularJS library allows you to use multiple Baasic applications in your AngularJS modules. To initialize a Baasic application you will need to add the following code to you module configuration:

module.config(["baasicAppProvider",
    function (baasicAppProvider) {
        var app = baasicAppProvider.create("<api-key>", {
            apiRootUrl: "api.baasic.com",
            apiVersion: "<version>"
        });
    }]);

Note: To obtain a Baasic Application Identifier please create your application on Baasic Registration page.

Baasic Modules

Baasic back-end contains various built-in modules that can be easily consumed through the Baasic AngularJS library. Baasic Developer Center contains detailed information about all the core modules supported by the AngularJS library.

Build Process

  1. Install NodeJs
  2. Open Shell/Command Prompt in the Baasic AngularJS folder
  3. Run npm install
  4. Install gulp globally: npm install -g gulp
  5. Run gulp

Contributing

Pull requests are always welcome

We appreciate pull requests you make, and we'll do our best to process them as quickly as we can. Even if it's just a typo you found or any small or large issue you fixed - please do it! It will help us a lot.

If your pull request is not accepted on your first try, don't be discouraged! If there's a problem with your implementation, hopefully you received feedback on what to improve.

Issue reporting

Before you create a new issue, please make sure it hasn't already been reported. In case it already exists simply add a quick "+1" or "I have the same problem" to the existing issue thread.

Other
  • Pull requests are always welcome
  • Please report any issues you might have found
  • Help us write the documentation
  • Create interesting apps using SDK
  • Looking for something else to do? Get in touch ...