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

@jimmyhmiller/manta

v5.2.4

Published

Manta Client API

Downloads

2

Readme

Manta Client Tools and SDK

manta is a Node.js SDK for interacting with Joyent's Manta system.

This repository is part of the Joyent Manta project. See CONTRIBUTING.md for contribution guidelines.

Installation

Node.js must be installed.

Command line utilities

Install Globally

To install globally (to use the CLI tools) you can try running:

$ npm install -g manta

Note that this might require sudo or escalated privileges to install properly. This can often result in permissions errors or other failures - in that case try the below method.

Install Globally to a User Directory

Based on the npm guide to prevent permissions errors, this module can be installed locally to a hidden path in your home directory as a global package by modifying the prefix that npm uses:

mkdir -p ~/.npm-global
npm config set prefix '~/.npm-global'
npm install -g manta
export PATH=$PATH:~/.npm-global/bin
export MANPATH=$MANPATH:~/.npm-global/share/man

You can persist this PATH by adding the following line to your ~/.bashrc file or similar:

export PATH=$PATH:~/.npm-global/bin
export MANPATH=$MANPATH:~/.npm-global/share/man

Node.js module

To install locally as a module (to use the SDK).

$ npm install manta

Bash completion

Optionally install Bash completion. This is done by sourceing the share/manta.completion file that is installed with the tools.

source "$(npm prefix -g)/lib/node_modules/manta/share/manta.completion"

Put that (or the equivalent) in your ~/.bashrc file to make it permanent.

You can verify that completions are working by typing the TAB key with the following:

$ mls --<TAB>
--account   --insecure  --long      --role      --type      --verbose
--fulljson  --json      --marker    --subuser   --url       --version
--help      --keyId     --reverse   --time      --user

Usage

First setup your environment to match your Joyent Manta account:

$ export MANTA_KEY_ID=$(ssh-keygen -l -f ~/.ssh/id_rsa.pub | awk '{print $2}')
$ export MANTA_URL=https://us-east.manta.joyent.com
$ export MANTA_USER=mark

Alternatively, you can pull your ssh key out of your ssh-agent if you are using one (this snippet takes the first key in the agent).

$ export MANTA_KEY_ID=$(ssh-add -l | awk '{print $2}' | head -1)

SDK

Then a code snippet:

var assert = require('assert');
var fs = require('fs');
var manta = require('manta');

var client = manta.createClient({
    sign: manta.privateKeySigner({
        key: fs.readFileSync(process.env.HOME + '/.ssh/id_rsa', 'utf8'),
        keyId: process.env.MANTA_KEY_ID,
        user: process.env.MANTA_USER
    }),
    user: process.env.MANTA_USER,
    url: process.env.MANTA_URL
});
console.log('manta ready: %s', client.toString());

client.get('/mark/stor/foo', function (err, stream) {
    assert.ifError(err);

    stream.setEncoding('utf8');
    stream.on('data', function (chunk) {
        console.log(chunk);
    });
});

If your paths begin with '~~/' then manta will automatically fill in the current manta user, which helps you write more generic code since you get rid of the hardcoded user name. The following two rows are identical:

client.get('/mark/stor/foo', function (err, stream) {});
client.get('~~/stor/foo', function (err, stream) {});

CLI

Basic commands include:

  1. mls - lists directory contents, default /:user/stor
  2. mmkdir - create a directory
  3. mput - uploads data to a Manta object
  4. mget - downloads an object from Manta
  5. mjob - creates and runs a computational job on Manta
  6. mfind - walks a Manta hierarchy to find names of objects by name, size, or type

A full set of commands for interacting with Manta is in bin.

More documentation

Docs can be found here: http://apidocs.joyent.com/manta/

Testing

Running this test suite will create files in Manta (using your current MANTA_* environment variables).

make test

The set of test files run can be filtered:

make test TEST_FILTER=muntar

As well, you can get debug/trace logging (note that we intentionally avoid LOG_LEVEL because the m* tools use that and sharing the same envvar can break tests):

make test TEST_LOG_LEVEL=trace 2>&1 | bunyan

There is a mechanism to re-build and test with a number of installed node versions. First you must create "test/node.paths" (based on "test/node.paths.example") and then:

make testall

License

The MIT License (MIT)

Copyright (c) 2018, Joyent, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Bugs

See https://github.com/joyent/node-manta/issues.

Release process

Here is how to cut a release:

  1. Make a commit to set the intended version in "package.json#version" and changing ## not yet released at the top of "CHANGES.md" to:

    ## not yet released
    
    
    ## $version
  2. Get that commit approved and merged via https://cr.joyent.us, as with all commits to this repo. See the discussion of contribution at the top of this readme.

  3. Once that is merged and you've updated your local copy, run:

    make cutarelease

    This will run a couple checks (clean working copy, versions in package.json and CHANGES.md match), then will git tag and npm publish.

Supported Node.js Versions

Currently, node-manta is officially supported on the following node versions:

  • v0.10 (latest tested 0.10.48)
  • v0.12 (latest tested 0.12.18)
  • v4.8 (latest tested 4.8.4)
  • v6.11 (latest tested 6.11.2)
  • v8.3 (latest tested 8.3.0)