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

@datafire/aiception

v3.0.0

Published

DataFire integration for AIception Interactive

Readme

@datafire/aiception

Client library for AIception Interactive

Installation and Usage

npm install --save @datafire/aiception
let aiception = require('@datafire/aiception').create({
  username: "",
  password: ""
});

.then(data => {
  console.log(data);
});

Description

Here you can play & test & prototype all the endpoints using just your browser! Go ahead!

Actions

adult_content.post

Creates a new adult_content task that tells the if the image has nudity or sexual content.

aiception.adult_content.post({
  "body": null
}, context)

Input

  • input object
    • body required object
      • async boolean
      • image_url required string

Output

adult_content.taskId.get

Gets the adult_content task.

aiception.adult_content.taskId.get({
  "taskId": ""
}, context)

Input

  • input object
    • taskId required string: An internal id for the task

Output

artistic_image.post

Given an image content and a style image create a new stylized image of the content.

aiception.artistic_image.post({
  "body": null
}, context)

Input

  • input object
    • body required object
      • async boolean
      • image_url required string
      • style_url required string

Output

artistic_image.taskId.get

The artistic_image will have the urls of the stylized images.

aiception.artistic_image.taskId.get({
  "taskId": ""
}, context)

Input

  • input object
    • taskId required string: An internal id for the task

Output

detect_object.post

Creates a new detect object task that recognizes the object in the image.

aiception.detect_object.post({
  "body": null
}, context)

Input

  • input object
    • body required object
      • async boolean
      • image_url required string

Output

detect_object.taskId.get

Gets the detect_object task.

aiception.detect_object.taskId.get({
  "taskId": ""
}, context)

Input

  • input object
    • taskId required string: An internal id for the task

Output

face.post

Get a list of all the locations of the faces in the image.

aiception.face.post({
  "body": null
}, context)

Input

  • input object
    • body required object
      • async boolean
      • image_url required string

Output

face.taskId.get

Gets the face task.

aiception.face.taskId.get({
  "taskId": ""
}, context)

Input

  • input object
    • taskId required string: An internal id for the task

Output

face_age.post

Creates a new face age task that approximates the age of the person in the image.

aiception.face_age.post({
  "body": null
}, context)

Input

  • input object
    • body required object
      • async boolean
      • image_url required string

Output

face_age.taskId.get

Gets the face_age task.

aiception.face_age.taskId.get({
  "taskId": ""
}, context)

Input

  • input object
    • taskId required string: An internal id for the task

Output

Definitions

AgeAnswer

  • AgeAnswer object
    • max integer
    • min integer
    • score number

Person

  • Person object
    • firstName string
    • lastName string
    • username required string

Persons

Task

  • Task object
    • answer number: The answer you are looking for.
    • image_url required string: The url of the image that will be processed.
    • this_url string: Use this url to get this task.