1.1.0 • Published 1 month ago

roboma v1.1.0

Weekly downloads
-
License
-
Repository
-
Last release
1 month ago

Roboma

Package to exports Task model. CommonJS support and ES Modules support.

NPM Version

Installation

npm install roboma --save

Usage

const { Tasks } = require('roboma');
const mongoose = require('mongoose');
require('dotenv').config();
mongoose.connect(process.env.APP_DB_HOST);

const task = await Tasks.findById(taskId);
const [profile, code] = await Promise.all([
    task.getProfile(),
    task.getSource()
]);
const profileZip = await profile.download();
await profile.upload(profileZip);

Release History

  • 1.1.0
    • Fix: Remove robologin package
    • Add: change-version profile actions
    • Fix: remove zero_profile.zip, using rbs-data package
    • Add: README
    • Add: webRTC.isEmptyIceList field
    • Fix: navigator.userAgent, navigator.platform, devicePixelRatio default value for lin os
    • Add: Using rbs-fingerprints package for random fingerprints via new profiles
    • Fix: add enum values for navigator.platform
    • Add: sourcemap optional for rollup builder
  • 1.0.1
  • 1.0.0