Socket
Socket
Sign inDemoInstall

ej

Package Overview
Dependencies
16
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ej

export json to csv


Version published
Weekly downloads
18
increased by50%
Maintainers
1
Install size
1.18 MB
Created
Weekly downloads
 

Readme

Source

ej

ej = export json to csv

npm version

原因

我们使用mongodb会经常导出json

mongoexport -d xbm-wechat-api -c senddeliveryhistories -o senddeliveryhistories.json  --jsonArray --query "{date:{\$in:['20150821','20150822']}}"

但json转成csv又没有上面的header,如果使用json2csv这样库,又无法解决对象嵌套的取值问题,所以就写了ej这个工具,它可以直接把mongoexport导出的json直接转成csv

比如

[
  {
    "__v": 0,
    "_id": {
      "$oid": "55bf208846b246fa238ff4d7"
    },
    "created_at": {
      "$date": "2015-08-03T08:04:24.648Z"
    },
    "date": "20150803",
  }
]

会生成以下4列

  • __v
  • _id.$oid
  • created_at.$date
  • date

Install

[sudo] npm install -g ej

Usages

ej input.json output.csv

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

版本历史

  • v1.0.0 初始化版本,实现ej导出

欢迎fork和反馈

如有建议或意见,请在issue提问或邮件

License

this repo is released under the MIT License.

Keywords

FAQs

Last updated on 29 Sep 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc