npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

maro

v0.0.10

Published

将 Taro 中的 api 拆分出来使用,并整合一些有用的 utils

Downloads

10

Readme

提供数十个常用 H5 常用的 api,直接看 ts 定义吧:

# 安装
yarn add maro
// 使用
import Maro from 'maro'
Maro.chooseImage().then(file => console.log(file))
declare const Maro: {
  // 【核心 API】
  request: typeof mmreq; // 网络请求,高级用法可查看 https://www.npmjs.com/package/mmreq
  chooseImage: () => Promise<File>; // 选择图片
  getStorageSync: (key: string) => string; // 读 localStorage
  setStorageSync: (key: string, value: string) => void; // 写 localStorage
  removeStorageSync: (key: string) => void; // 删 localStorage
  store: any; // 数据共享
  eventCenter: {
    // 观察者
    on: (key: string, fn: Function) => void;
    off: (key: string) => void;
    trigger: (key: string) => void;
    emit: (key: string) => void;
  };

  // 【工具类】
  navigateTo: (params: { url: string; query?: any; redirect?: boolean }) => void; // hash 路由跳转
  getHashPath: () => string; // hash 模式路由时,获取诸如 /welcome/home 的路径
  getHashQuery: () => any; // hash 模式路由时,获取 {k: v}
  getSearchQuery: () => any; // search 模式路由时,获取 {k: v}
  getQuery: () => any; // 从 search 和 hash 上获取 {k: v},hash 覆盖 search
  isIOS: () => boolean;
  isAndroid: () => boolean;
  isPc: () => boolean;
  isIphoneNotch: () => boolean; // 是否是刘海iphone
  isWechat: () => boolean; // 是否在微信环境,如微信 webview,或者微信小程序的 webview
  isObjEqual: (obj1: any, obj2: any) => boolean; // 两个 plain object 是否一致,支持递归
  getDateStr: (param: string | Date | number) => string; // (时间戳|Date对象|2018/1/1|2018-1-1) => 2018-01-01

  // 【ui 相关】
  showLoading: () => void; // 显示全局 loading
  hideLoading: () => void; // 隐藏全局 loading
  showToast: (msg: string, color?: string, delay?: number) => void; // 展示 toast
  
  // 【地图相关】
  setAMapKeys: (webkey: string, apikey: string) => void; // 设置高德地图的 key,请在调用后续方法之前,先调用该方法初始化 key
  getAMap: () => Promise<any>; // 获取 AMap 的引用(首次会在 html 中插入<script>加载AMap)
  getLocation: () => Promise<{ longitude: number; latitude: number }>; // 获取用户当前 gps
  getPoiByLoc: (params: { longitude: number; latitude: number }) => Promise<any>; // 地址解析
  getLocByPoi: (keywords: string) => Promise<any>; // 逆地址解析
  searchAround: (params: {
    latitude: number;
    longitude: number;
    radius: number;
    keywords?: string;
  }) => Promise<any>; // 搜索周边 POI
  searchKeyword: (params: {
    city?: string | number;
    county?: string | number;
    keywords: string;
  }) => Promise<any>; // 搜索关键词(可指定某个区域)
};