New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

sme-router

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sme-router

A lightweight router lib that implement with express route style

latest
Source
npmnpm
Version
0.12.8
Version published
Maintainers
1
Created
Source

SME Router

A lightweight router lib that implement with express route style

Travis branch coverage download version license

Languages

  • 中文
  • English

Documentation

Get Start

Installation

npm i --save sme-router

Usage

Edit sme-router example

index.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>SME Router</title>
</head>
<body>
  <div id="app">
    <div id="router-view"></div>
  </div>
</body>
</html>

import SMERouter from 'sme-router'

const router = new SMERouter('router-view')

// route config
router.route('/index', (req, res, next) => {
  res.render(
    `hallo world`
  )
})

router.route('*', (req, res, next) => {
  res.redirect('/index')
})

Note: if your are not using webpack, your can simply import it to your html file

<script type="text/javascript" src="https://unpkg.com/sme-router"></script>

Please see the document for more details

Live demo

click me to see the demo

Running Example

1.clone the repo

npm i
npm run dev

open http://localhost:8080/

2.Test

npm run test // or => karma start

3.lint

npm run lint

Contributors

Thanks goes to these wonderful people (emoji key):


hwen

🤔 💻 🎨 📖 💡

License

MIT License

Copyright (c) 2017-present, hwen hwenleung@gmail.com

Keywords

route

FAQs

Package last updated on 10 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts