- Install Dependencies
npm init npm install --save-dev ts-node typescript tslib express @types/express
- Create
server.tsin root folder of your app.
| "use strict"; | |
| const gulp = require('gulp'); | |
| const ts = require('gulp-typescript'); | |
| const browserify = require('browserify'); | |
| const source = require('vinyl-source-stream'); | |
| const buffer = require('vinyl-buffer'); | |
| const gutil = require('gulp-util'); | |
| const uglify = require('gulp-uglify'); | |
| const sourcemaps = require('gulp-sourcemaps'); |
azu/typescript1.5-es6module-npm at tsconfig-gulp
tsconfigが未対応なtsc1.4でもtsconfig.jsonをただの設定ファイル置き場として使う例。
filesGlobはatom-typescriptの独自拡張だけど
.
├── README.md
├── build
│ ├── bundle.js
| /*! | |
| * JavaScript function to calculate the destination point given start point latitude / longitude (numeric degrees), bearing (numeric degrees) and distance (in m). | |
| * | |
| * Original scripts by Chris Veness | |
| * Taken from http://movable-type.co.uk/scripts/latlong-vincenty-direct.html and optimized / cleaned up by Mathias Bynens <http://mathiasbynens.be/> | |
| * Based on the Vincenty direct formula by T. Vincenty, “Direct and Inverse Solutions of Geodesics on the Ellipsoid with application of nested equations”, Survey Review, vol XXII no 176, 1975 <http://www.ngs.noaa.gov/PUBS_LIB/inverse.pdf> | |
| */ | |
| function toRad(n) { | |
| return n * Math.PI / 180; | |
| }; |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).