Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickmaev/bootstrap3-native
Fixed fork from bootstrap.native that allows you to use it with SSR.
https://github.com/nickmaev/bootstrap3-native
bootstrap bootstrap3 server-side-rendering ssr types typescript
Last synced: about 2 months ago
JSON representation
Fixed fork from bootstrap.native that allows you to use it with SSR.
- Host: GitHub
- URL: https://github.com/nickmaev/bootstrap3-native
- Owner: NickMaev
- License: mit
- Archived: true
- Created: 2018-10-10T06:05:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-10T11:24:49.000Z (about 6 years ago)
- Last Synced: 2024-09-27T16:06:34.950Z (about 2 months ago)
- Topics: bootstrap, bootstrap3, server-side-rendering, ssr, types, typescript
- Language: JavaScript
- Homepage:
- Size: 20.5 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![npm version](https://img.shields.io/npm/v/bootstrap3-native.svg?style=flat-square)](https://www.npmjs.com/package/bootstrap3-native)
[![npm downloads](https://img.shields.io/npm/dm/bootstrap3-native.svg?style=flat-square)](https://www.npmjs.com/package/bootstrap3-native)# Description
bootstrap3-native is a fixed fork from [bootstrap.native](https://github.com/thednp/bootstrap.native).
This version:
* contains types;
* allows you to build isomorphic web applications;
* hasn't got an automatic initialization of components.# Installation
`npm install bootstrap3-native`# Usage
```typescript
import { Modal } from 'bootstrap3-native';var el = document.getElementById("myModal");
var modal = new Modal(el);
modal.show();
```