All Projects → nwtgck → typescript-on-browser-starter

nwtgck / typescript-on-browser-starter

Licence: MIT license
Starter for TypeScript on Web Browser

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
HTML
75241 projects

Projects that are alternatives of or similar to typescript-on-browser-starter

Vue Electron Typescript Quickstart
A boilerplate of Electron app that uses Vue in TypeScript.
Stars: ✭ 22 (-4.35%)
Mutual labels:  starter, quickstart
zkspringboot
ZK - Spring Boot integration
Stars: ✭ 38 (+65.22%)
Mutual labels:  starter
oci-quickstart
Oracle Cloud Infrastructure Quick Start
Stars: ✭ 59 (+156.52%)
Mutual labels:  quickstart
starter-reactnative-nestjs-mysql
Starter mobile ReactNative NestJS MySQL with continuous integration and AWS deployment
Stars: ✭ 16 (-30.43%)
Mutual labels:  starter
gatsby-starter-glass
A Minimal & Beautiful Gatsby Personal Blog Starter With Nice Glassmorphism UI
Stars: ✭ 134 (+482.61%)
Mutual labels:  starter
WP-Gulp-Starter
A starter kit for developing WordPress themes and plugins with Gulp workflow.
Stars: ✭ 26 (+13.04%)
Mutual labels:  starter
gridsome-starter-resume
💾 Gridsome starter resume with bootstrap
Stars: ✭ 17 (-26.09%)
Mutual labels:  starter
react-native-typescript-library-starter
Ready to Rock 🔥
Stars: ✭ 44 (+91.3%)
Mutual labels:  starter
nodejs-starter-template
You can use this template when you're starting a new project by using Node.js, Express, and Mongoose. It contains general concepts, you can customize it according to your needs.
Stars: ✭ 54 (+134.78%)
Mutual labels:  starter
node-typescript-starter
REST API using Node with typescript, KOA framework. TypeORM for SQL. Middlewares JWT (auth), CORS, Winston Logger, Error, Response
Stars: ✭ 19 (-17.39%)
Mutual labels:  starter
modern-webpack-starter
🏰 A modern JavaScript starter using Webpack 4. Made in a simple way - good for learning or starting a new project without having to rollout cli-auto-builders.
Stars: ✭ 42 (+82.61%)
Mutual labels:  starter
botfuel-sample-starter
Starter bot using Botfuel Dialog
Stars: ✭ 24 (+4.35%)
Mutual labels:  starter
angular-open-source-starter
This is a starter project for creating open-source libraries for Angular. It is a full fledged Angular workspace with demo application and easy library addition. It is designed to be used for open-sourcing libraries on Github and has everything you'd need ready for CI, code coverage, SSR testing, StackBlitz demo deployment and more.
Stars: ✭ 212 (+821.74%)
Mutual labels:  starter
angular2-webpack-advance-starter
An advanced Angular2 Webpack Starter project with support for ngrx/store, ngrx/effects, ng2-translate, angulartics2, lodash, NativeScript (*native* mobile), Electron (Mac, Windows and Linux desktop) and more.
Stars: ✭ 49 (+113.04%)
Mutual labels:  starter
angular-app
Angular 14 ,Bootstrap 5, Node.js, Express.js, ESLint, CRUD, PWA, SSR, SEO, Universal, Lazy Loading
Stars: ✭ 389 (+1591.3%)
Mutual labels:  starter
node-typescript-starter
A starter project to easily create new NodeJS applications with TypeScript.
Stars: ✭ 42 (+82.61%)
Mutual labels:  starter
graphql-compose-elasticsearch
Graphql App using Node with typescript, KOA framework and Elasticsearch
Stars: ✭ 40 (+73.91%)
Mutual labels:  starter
in-app-payments-android-quickstart
In-App Payments Quick Start Sample Android App
Stars: ✭ 39 (+69.57%)
Mutual labels:  quickstart
quickstart-docker-git
Boostrap projects with a Dockerfile and a folder structure that works.
Stars: ✭ 47 (+104.35%)
Mutual labels:  quickstart
snorkel
Snorkel - Bootstrap your Data Science
Stars: ✭ 24 (+4.35%)
Mutual labels:  starter

typescript-on-browser-starter

Netlify Status

Starter for TypeScript on Web Browser

Purpose

For users who wants to try TypeScript on Web Browser easily and stress free

Feature

  • Simple as possible
  • Source map
  • Hot reload

Quick Start

# You can change app name
APP_NAME="myapp"
git clone https://github.com/nwtgck/typescript-on-browser-starter.git $APP_NAME && \
cd $APP_NAME && \
rm -rf .git && \
sed -i '' "s/typescript-on-browser-starter/${APP_NAME}/" package.json && \
sed -i '' "s/Starter for TypeScript on Web Browser/${APP_NAME}/" package.json && \
echo -e "# $APP_NAME" > README.md && \
sed -i ''  "s/2019/$(date -u "+%Y")/" LICENSE  && \
npm i

How to change

First, you can serve a develop server as follows.

npm install
npm run serve

Then, you can access to http://localhost:8080/, which will be loaded automatically if file changes detected.

You can modify src/index.ts as you want.

Build

npm install
npm run build

Then, you get ./dist directory. The file structure should be the following.

dist/
├── bundle.js
├── index.html
└── src
    └── index.d.ts

bundle.js includes an inline source map.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].