Giter Site home page Giter Site logo

auto-mongo-export's Introduction

MongoDB Auto Export CSV, JSON

Build Status

몽고디비를 주기적으로 CSV, JSON으로 Export 해주는 라이브러리 입니다.

A library that periodically exports MongoDB to CSV, JSON.

사용법, HOW

몽고디비 자동 내보내기 스케줄 생성 / create auto export schedule

createSchedule({
    ms: cycle,
    type: export_type "json" or "csv",
    dbHost: DB_HOST
    dirName: folder_name,
    path: stored_path,
    workName: schedule_name
}, colection_name)

몽고디비 자동 내보내기 스케줄 삭제 / delete auto export schedule

deleteSchedule(schedule_name)

스케쥴 리스트 / get schedules

const a = getSchedules()
console.log(a)

예제, Example

const mongoExport = require("auto-mongo-export")

// create Schedule
mongoExport.createSchedule({
    ms: 10000,
    type: "json",
    dbHost: "mongodb://localhost:27017/example",
    dirName: "myDB",
    path: "./",
    workName: "schedule1"
}, "collection1", "collection2", "collection3")

// check Schedules
const schedules = MongoExport.getSchedules()
console.log(schedules)

// delete Schedulue
mongoExport.deleteSchedule("schedule1")

auto-mongo-export's People

Contributors

pukuba avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.