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 🙏

© 2024 – Pkg Stats / Ryan Hefner

acs-node-beta

v1.0.0

Published

Appcelerator ACS SDK for NodeJS [beta]

Downloads

4

Readme

ACS Node SDK Build Status

The SDK of ACS for NodeJS

Getting started

git clone git+https://github.com/appcelerator/acs-node-sdk.git
cd acs-node-sdk
npm install

Basic Example

You can get an overview of ACS Node SDK example from examples/basic.js

cd acs-node-sdk/examples
export ACS_APPKEY=YOUR_ACS_TEST_APPKEY
node basic.js

ACS Node SDK Example on Node.ACS

There is another example for ACS Node SDK to show how to run on Node.ACS as a service.

Make sure you have installed Node.ACS command line tool first:

sudo npm -g install acs

Then you can try:

cd acs-node-sdk/examples/over_nodeacs
# Update config.json to fill in your ACS app key
vi config.json
acs run

Open another session and try:

curl -b cookie.txt -c cookie.txt -X POST -F "login=YOUR_USERNAME" -F "password=YOUR_PASSWORD" http://localhost:8080/login
curl -b cookie.txt -c cookie.txt -X GET http://localhost:8080/showMe

ACS Node SDK Basic Usage

Use ACS Node SDK directly

var ACSNode = require('acs-node');
var acsApp = new ACSNode('Your_ACS_APPKEY');

acsApp.usersLogin({
    login: ACS_USERNAME,
    password: ACS_PASSWORD
}, function(err, result) {
    if (err) {
        console.error(err);
        return;
    }
    console.log('Logged in user: %j', result.body);
    acsApp.usersShowMe(function(err, result) {
        if (err) {
            console.error(err);
            return;
        }
        console.log('Show user: %j', result.body);
    });
});

Use ACS Node SDK inner express or http/https NodeJS module

// HTTP call 1 with cookie:
var acsApp = new ACSNode('Your_ACS_APPKEY');

acsApp.usersLogin({
    login: req.body.login,
    password: req.body.password,
    req: req,
    res: res
}, function(err, result) {
    if (err) {
        console.error(err);
        return;
    }
    res.end(result.body);
});

// HTTP call 2 with cookie, after HTTP call 1:
var ACSNode = require('acs-node');
var acsApp = new ACSNode('Your_ACS_APPKEY');

acsApp.usersShowMe(ACS_APPKEY, {
    req: req,
    res: res
}, function(err, result) {
    if (err) {
        console.error(err);
        return;
    }
    res.end(result.body);
});

General RestAPI call

var acsApp = new ACSNode('Your_ACS_APPKEY');

acsApp.post(ACS_APPKEY, '/v1/users/login.json', {
    login: ACS_USERNAME,
    password: ACS_PASSWORD
}, function(err, result) {
    if (err) {
        console.error(err);
        return;
    }

    console.log('ACS returned body: %j', result.body);
    console.log('Cookie string returned: %s', result.cookieString);

    acsApp.get(ACS_APPKEY, '/v1/users/show/me.json', function(err, result) {
        if (err) {
            console.error(err);
            return;
        }
        console.log('ACS returned user: %j', result.body);
    });
});

Session Management

By default, acs-node-sdk will manage sessions for you automatically when you log in and out. You can create a new ACSNode instance for each authenticated session. You can also reuse an existing instance by calling usersLogin() again, however this simply overwrites the existing session cookie and will not log out the previous session.

However, if you'd prefer to manually manage the session cookie, then you can set the autoSessionManagement option to false when the ACSNode instance is created.

var acsApp = new ACSNode('Your_ACS_APPKEY', {
    autoSessionManagement: false
});

This means once you log in, you must track the session cookie yourself:

acsApp.usersLogin({
    login: ACS_USERNAME,
    password: ACS_PASSWORD
}, function(err, result) {
    if (err) {
        console.error(err);
        return;
    }
    
    console.log('Logged in user');
    console.log('Cookie string returned: %s', result.cookieString);
    
    // IMPORTANT! You must set the sessionCookieString or else all privileged calls will fail
    acsApp.sessionCookieString = result.cookieString;
});

Running Unit Tests

To run the unit tests, simply run:

export ACS_APPKEY=ONE_OF_YOUR_ACS_TEST_APPKEY
npm test

License

This project is open source and provided under the Apache Public License (version 2). Please make sure you see the LICENSE file included in this distribution for more details on the license. Also, please take notice of the privacy notice at the end of the file.

(C) Copyright 2012-2014, Appcelerator Inc. All Rights Reserved.