9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

サーバなしで画像をアップロードできるSaaS「Baku」を作った

Posted at

Baku

68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f6a612f662f66392f53616b61696d696e61746f5f4d697a756b695f536869676572755f526f61645f42616b755f5374617475655f312e4a5047.jpeg

react + firebaseでアプリを作っている際、画像のアップロードをシンプルに代行してくれるサービスがなかったので作りました。よけいなものは一切なく、アップロードしてURLを返すだけのサービスです。

使い方

npm i --save ba-ku
import Baku from 'ba-ku';
const baku = new Baku()

baku.upload(FILE,(e,res)=>{
  console.log(res.url)
  //This is hosted file url.
})

baku.upload()にファイルオブジェクトを投げるとアップロードしてくれます。
実際にはjQueryでもangularでも使えますが、ここではReactでの使い方を紹介します。

import React, { Component } from 'react';
import Baku from 'ba-ku';
const baku = new Baku()

export default class App extends Component {
  constructor(props) {
      super(props);
      this.state = {
          image:''
      };
  }
  handleFileSelect = (e)=>{
    baku.upload(e.target.files[0],(e,res)=>{
      this.setState({image:res.url})
    })
  };
  render() {
    return (
      <div>
      <input type='file' onChange={this.handleFileSelect}></input>
        <img src={this.state.image} />
    </div>
    );
  }
}

詳細はgithubより
https://github.com/tkshi/baku

現在は無料で10GB/ユーザまで使えます。それ以上は課金が必要な仕組みです。


一緒にこのサービスを作ってくれるエンジニア/デザイナー
資金提供をしてくれる投資家を募集中です。興味のある方は下記アドレスまで
endotakashi1992@gmail.com

9
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?