0.3.17 • Published 5 years ago

edward-aly-oss v0.3.17

Weekly downloads
-
License
BSD
Repository
-
Last release
5 years ago

aly oss

JS代码

const oss = require("edward-ali-oss");

console.log(oss.version);

// 初始化
let demo = new oss({
	region: 'oss-cn-beijing', // 地域
	accessKeyId: '***********', // 你的阿里云AK
	accessKeySecret: '*************', // 你的阿里云AS
	bucket: 'edward-blog' // bucket名称
});

// 列表返回1000个
demo.list().then(data => {
	data.objects.map(i => {
		console.log(i.name);
	})
})

// 删除一个
demo.delete('static/website2018/news/demo/images/icon-1a36c.svg').then(data => {
	console.log(data);
})

// 删除一组
demo.drop(['static/website2018/news/demo/styles/2.1e2ff18d5253ad1d6472.css', 'static/website2018/news/demo/styles/3.bca4f6e08fd8c56cbc04.css']).then(data => {
	console.log(data);
})

// 上传一个
demo.put('static/website2018/news/demo/javascripts/ossDel.js', '/Users/edward/linux/myoss/ossDel.js').then(data => {
	console.log(data);
})
0.3.17

5 years ago

0.3.14

5 years ago

0.3.13

5 years ago

0.3.12

5 years ago

0.3.11

5 years ago

0.3.10

5 years ago

0.3.9

5 years ago

0.3.8

5 years ago

0.3.7

5 years ago

0.3.6

5 years ago

0.3.5

5 years ago

0.3.4

5 years ago

0.3.3

5 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.2.8

5 years ago

0.2.7

5 years ago

0.2.6

5 years ago