0.0.6 • Published 8 years ago

excel-generator v0.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Generator

You can generate any format of file you want from excel (sql, php, html, etc.)

##How to use

	npm install excel-generator
	'use strict';

	let path = require('path');
	let Generator = require('excel-generator');

	new Generator({
		src: path.join(__dirname, 'src', 'test.xlsx'),
		dist: path.join(__dirname, 'dist'),
		filename: '{src}.php',
		template: './template.ejs',
		sheet: 0,
		symbol: null,
		columns: {
			test1(str) {
				return 'test';
			},
			test5(str) {
				this.replaceStr('\n', '');
			}
		}
	});
0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago