# ense

> A simple web framework which is for modern browsers and written with modern and future code.

Latest version **1.0.7** (published 2017-05-17) · 0 weekly downloads

## Install

```sh
npm install ense
pnpm add ense
yarn add ense
bun add ense
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.7 |
| Published | 2017-05-17 |
| First published | 2017-05-16 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Nathan Smith |
| Maintainers | nathansmithdeveloper |

## Links

- npm: https://www.npmjs.com/package/ense
- Repository: https://github.com/nathan1989/ense
- Homepage: https://github.com/nathan1989/ense#readme
- Issues: https://github.com/nathan1989/ense/issues
- npm.io page: https://npm.io/package/ense

## Recent versions

- 1.0.7 (latest) — 2017-05-17
- 1.0.6 — 2017-05-17
- 1.0.5 — 2017-05-17
- 1.0.4 — 2017-05-17
- 1.0.3 — 2017-05-17
- 1.0.2 — 2017-05-17
- 1.0.1 — 2017-05-16
- 1.0.0 — 2017-05-16

## README

# ENSE

Ense is a simple web framework which is for modern browsers and written with modern and future code.

## Dependencies

- SASS compiler
- Babel
- PostCSS or similar autoprefixing tool (if you need to consider browser prefixes)

## Getting started

```
npm install ense --save
```

## CSS

#### Simple SCSS import

Simply import all of the SCSS code to your custom SCSS file.

```
@import 'node_modules/ense/styles/main.scss';
```

#### Recommended SCSS import

Recommended method is to import each SCSS module folder. This way you can choose if you want to use certain styles. 
Be sure to include your custom styles after the ```settings/*``` and ```tools/*``` files and before everything else. This way you can override Ense variables which update Ense CSS classes.

```
// Settings
@import "node_modules/ense/styles/settings/core";

// Tools
@import "node_modules/ense/styles/tools/core";

// Custom overrides go here

// Base
@import "node_modules/ense/styles/base/core";

// Objects
@import "node_modules/ense/styles/objects/core";

// Components
@import "node_modules/ense/styles/components/core";

// Utilities
@import "node_modules/ense/styles/utilities/core";

```

#### CSS CDN

Coming soon.

## JS

Ense Javascript is written in ES6/ES2015, so you will need Babel to compile it to todays Javascript. [Babel](http://babeljs.io/) is a next generation JavaScript compiler. One of the features is the ability to use ES6/ES2015 modules now, even though browsers do not yet support this feature natively.

```js
import Ense from "ense"
.
.
.
new Ense()
```

#### JS CDN

Coming soon.

## Versioning

Ense is maintained by using the [Semantic Versioning Specification (SemVer)](http://semver.org).

## Browser Support

![Chrome](https://raw.github.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png) | ![Firefox](https://raw.github.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png) | ![Edge](https://raw.github.com/alrra/browser-logos/master/src/edge/edge_48x48.png) | ![IE](https://raw.github.com/alrra/browser-logos/master/src/archive/internet-explorer_9-11/internet-explorer_9-11_48x48.png) | ![Safari](https://raw.github.com/alrra/browser-logos/master/src/safari/safari_48x48.png) | ![Opera](https://raw.github.com/alrra/browser-logos/master/src/opera/opera_48x48.png)
--- | --- | --- | --- | --- | --- |
Latest ✔ | Latest ✔ | Latest ✔ | 11+ ✔ | 7.1+ ✔ | Latest ✔ |

---
_Source: https://npm.io/package/ense · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
