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

arnelify

v0.5.0

Published

Arnelify SDK - provides a convenient interface for interacting with the Arnelify API

Readme

Arnelify SDK for NodeJS C++ G++ NodeJS Bun

🚀 About

Arnelify® SDK for NodeJS - provides a convenient interface for interacting with the Arnelify API

WARNING! This is an initial version of the package, and it is still under active development.

⚙️ Before install

  • MacOS or Linux
  • Windows with WSL2
  • Docker
  • Git

📦 Installation

Download SDK via Git command:

$ git clone [email protected]:taronsarkisyan/cvmaker-sdk.git

Create .env and insert API key from Arnelify:

$ cd ./cvmaker-sdk
$ cp ./.env.local ./.env

Open SDK-container:

$ docker compose up -d
$ docker ps
$ docker exec -it YOUR_CONTAINER_ID bash

Install dependencies:

$ yarn install

See the Target Class:

$ cat ./src/core/cvmaker.js

🚀 Usage

Lets run our sample app:

$ yarn start

Release Notes

Version 0.5.0 - Release

We are excited to introduce the first version of the Arnelify SDK. Target class is located in the ./src/core directory and is utilized in the ./src/index.js srcipt. You can further use it in any of your projects.

Key Features:

  • Basic functionality
  • Easy integration

The script reads, downloads, and writes files to disk. Please check the read and write permissions for files in the container.

Generate Payload

API URL:

https://cv.arnelify.com/api/v0.5/generate

Payload example (application/json)

{
  user_token: 'your-token-here',
  description: 'your-job-description',
}

You can also find an example of code in bash:

./src/examples/generate.sh

Generate for fake User

API URL:

https://cv.arnelify.com/api/v0.5/generate

Payload example (application/json):

{
  "user_token": "your-token",
  "description": "your-job-description",
  "first_name": "Artur",
  "last_name": "Doyle",
  "country": "USA",
  "city": "New York",
  "education": "[{\"key\":\"New York Academy\",\"value\":\"2009 - 2016\"}]",
  "customers": "[{\"key\":\"Apple\",\"value\":\"Jan 2022 - Present (2 years)\"},{\"key\":\"Google\",\"value\":\"Jan 2020 - Jan 2022 (2 years)\"},{\"key\":\"Meta\",\"value\":\"Jan 2018 - Jan 2020 (2 years)\"}]",
  "languages": "[{\"key\":\"English\",\"value\":\"B2/C1\"},{\"key\":\"German\",\"value\":\"B1\"},{\"key\":\"Ukrainian\",\"value\":\"C2\"}]",
  "contacts": "[{\"key\":\"Mobile\",\"value\":\"+1XXXXXXXXXX\"},{\"key\":\"E-Mail\",\"value\":\"[email protected]\"},{\"key\":\"LinkedIn\",\"value\":\"https://linkedin.com\"}]",
  "managed": "1",
  "language": "en"
}

You can also find an example of code in bash:

./src/examples/generateForFakeUser.sh

Response Examples

Success Response:

{
  code: 200, //always 200
  success: "https://download-link-for-pdf" //always has success
}

Error Response:

{
  code: 409, //not only 409
  error: "Conflict" //always has error message (string)
}