# nast

> Library for fast coding.

Latest version **1.0.19** (published 2021-10-07) · MIT license · 0 weekly downloads

## Install

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

## 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.19 |
| Published | 2021-10-07 |
| First published | 2019-03-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 10 |
| Unpacked size | 8.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Alexey |
| Maintainers | alex-nova, alexey-renova |
| Keywords | vue, library, framework |

## Links

- npm: https://www.npmjs.com/package/nast
- Repository: https://github.com/renova-st/nast
- Homepage: https://github.com/renova-st/nast#readme
- Issues: https://github.com/renova-st/nast/issues
- npm.io page: https://npm.io/package/nast

## Dependencies (10)

- [lodash](https://npm.io/package/lodash.md) ^4.17
- [nast-ui](https://npm.io/package/nast-ui.md) ^1.0.*
- [nast-api](https://npm.io/package/nast-api.md) ^1.0.*
- [nast-auth](https://npm.io/package/nast-auth.md) ^1.0.*
- [nast-date](https://npm.io/package/nast-date.md) ^1.0.*
- [nast-form](https://npm.io/package/nast-form.md) ^1.0.*
- [nast-store](https://npm.io/package/nast-store.md) ^1.0.*
- [nast-router](https://npm.io/package/nast-router.md) ^1.0.*
- [nast-secure](https://npm.io/package/nast-secure.md) ^1.0.*
- [nast-helpers](https://npm.io/package/nast-helpers.md) ^1.0.*

## Alternatives

- [@sveltejs/kit](https://npm.io/package/@sveltejs/kit.md) — 2.2M weekly downloads
- [@atlaskit/theme](https://npm.io/package/@atlaskit/theme.md) — 402.0K weekly downloads
- [@tangle-network/brand](https://npm.io/package/@tangle-network/brand.md) — 10.0K weekly downloads
- [seneca](https://npm.io/package/seneca.md) — 7.4K weekly downloads
- [@bsb/base](https://npm.io/package/@bsb/base.md) — 7.2K weekly downloads

## Recent versions

- 1.0.19 (latest) — 2021-10-07
- 1.0.18 — 2021-10-07
- 1.0.17 — 2021-10-07
- 1.0.16 — 2021-09-23
- 1.0.15 — 2021-09-23
- 1.0.14 — 2021-09-23
- 1.0.13 — 2021-09-23
- 1.0.12 — 2021-08-05
- 1.0.11 — 2021-08-05
- 1.0.10 — 2021-08-05
- 1.0.9 — 2021-07-24
- 1.0.8 — 2021-07-11
- 1.0.7 — 2021-07-11
- 1.0.6 — 2021-07-11
- 1.0.5 — 2021-07-11
- … 19 more at https://npm.io/package/nast/versions

## README

# nast

## Installation
```
npm i -S nast
```

## Basic usage
```
import NastCore from 'nast'

const settings = {
  routes: [
    { path: '', component: () => import('./App'), children: [
      { path: '/', name: 'index', component: () => import('./HelloWorld'), title: 'Главная', },
      { path: '/about', name: 'about', component: () => import('./About'), parent: 'index', title: 'О странице', },
    ], },
  ],
  stores: {
    app: {
      state: {
        user: {},
      },
      mutations: {
        user(state, value) {
          state.user = value
        },
      },
      namespaced: true,
    },
  },
}

NastCore.createApp(settings)
```

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