0.2.0 • Published 8 years ago

tsl-netzkonform-algodat v0.2.0

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

TypeScript Library: Algorithms & Data Structures

Installation:

$ yarn add tsl-netzkonform-algodat

If you stick to the default npm, the command looks like this:

$ npm --save --save-dev install tsl-netzkonform-algodat

TypeScript:

import * as AlgoDat from 'tsl-netzkonform-algodat';

Browser:

Copy "node_modules/tsl-netzkonform-algodat/tsl-netzkonform-algodat.js" into a sub-directory of your project like "externals/". Configure RequireJS in your HTML file like this:

require.config({
	"paths": {
		...
		"tsl-netzkonform-algodat": "externals/tsl-netzkonform-algodat"
		...
	}
});