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

framer-motion-nextjs-elements

v1.0.0

Published

A collection of pre-configured Framer Motion elements/components optimized for Next.js. Use animations without sacrificing the benefits of server-side rendering of nextjs.

Downloads

7

Readme

framer-motion-nextjs-elements

License: ISC

Description

framer-motion-nextjs-elements is a collection of pre-configured Framer Motion elements/components optimized for Next.js. This package allows you to use animations in your Next.js application without converting your server components to client components, preserving the benefits of server-side rendering (SSR).

Prerequisite

npm install framer-motion

Installation

npm install framer-motion-nextjs-elements

Usage/Examples

Import the components you need from framer-motion-nextjs-elements and use them in your Next.js server components just like regular HTML elements, without needing to use "use client".

import { MDiv } from 'framer-motion-nextjs-elements';

const MyComponent = () => (
  <MDiv
    initial={{ opacity: 0 }}
    animate={{ opacity: 1 }}
    transition={{ duration: 1 }}
    className="container"
  >
    <div>Hello World!</MSpan>
  </MDiv>
);

Component Mapping

The following table provides a mapping between standard HTML elements, their Framer Motion components, and the corresponding components provided by this package:

| HTML Element | Framer Motion Component | framer-motion-nextjs-elements | |--------------------|-------------------------|--------------------------------| | <a> | <motion.a> | <MA> | | <abbr> | <motion.abbr> | <MAbbr> | | <address> | <motion.address> | <MAddress> | | <area> | <motion.area> | <MArea> | | <article> | <motion.article> | <MArticle> | | <aside> | <motion.aside> | <MAside> | | <audio> | <motion.audio> | <MAudio> | | <b> | <motion.b> | <MB> | | <base> | <motion.base> | <MBase> | | <bdi> | <motion.bdi> | <MBdi> | | <bdo> | <motion.bdo> | <MBdo> | | <big> | <motion.big> | <MBig> | | <blockquote> | <motion.blockquote> | <MBlockquote> | | <body> | <motion.body> | <MBody> | | <br> | <motion.br> | <MBr> | | <button> | <motion.button> | <MButton> | | <canvas> | <motion.canvas> | <MCanvas> | | <caption> | <motion.caption> | <MCaption> | | <cite> | <motion.cite> | <MCite> | | <code> | <motion.code> | <MCode> | | <col> | <motion.col> | <MCol> | | <colgroup> | <motion.colgroup> | <MColgroup> | | <data> | <motion.data> | <MData> | | <datalist> | <motion.datalist> | <MDatalist> | | <dd> | <motion.dd> | <Mdd> | | <del> | <motion.del> | <MDel> | | <details> | <motion.details> | <MDetails> | | <dfn> | <motion.dfn> | <MDfn> | | <dialog> | <motion.dialog> | <MDialog> | | <div> | <motion.div> | <MDiv> | | <dl> | <motion.dl> | <MDl> | | <dt> | <motion.dt> | <MDt> | | <em> | <motion.em> | <MEm> | | <embed> | <motion.embed> | <MEmbed> | | <fieldset> | <motion.fieldset> | <MFieldset> | | <figcaption> | <motion.figcaption> | <MFigcaption> | | <figure> | <motion.figure> | <MFigure> | | <footer> | <motion.footer> | <MFooter> | | <form> | <motion.form> | <MForm> | | <h1> | <motion.h1> | <MH1> | | <h2> | <motion.h2> | <MH2> | | <h3> | <motion.h3> | <MH3> | | <h4> | <motion.h4> | <MH4> | | <h5> | <motion.h5> | <MH5> | | <h6> | <motion.h6> | <MH6> | | <head> | <motion.head> | <MHead> | | <header> | <motion.header> | <MHeader> | | <hgroup> | <motion.hgroup> | <MHgroup> | | <hr> | <motion.hr> | <Mhr> | | <html> | <motion.html> | <MHtml> | | <i> | <motion.i> | <MI> | | <iframe> | <motion.iframe> | <MIframe> | | <img> | <motion.img> | <MImg> | | <input> | <motion.input> | <MInput> | | <ins> | <motion.ins> | <MIns> | | <kbd> | <motion.kbd> | <MKbd> | | <keygen> | <motion.keygen> | <MKeygen> | | <label> | <motion.label> | <MLabel> | | <legend> | <motion.legend> | <MLegend> | | <li> | <motion.li> | <MLi> | | <link> | <motion.link> | <MLink> | | <main> | <motion.main> | <MMain> | | <map> | <motion.map> | <MMap> | | <mark> | <motion.mark> | <MMark> | | <menu> | <motion.menu> | <MMenu> | | <menuitem> | <motion.menuitem> | <MMenuitem> | | <meta> | <motion.meta> | <MMeta> | | <meter> | <motion.meter> | <MMeter> | | <nav> | <motion.nav> | <MNav> | | <noscript> | <motion.noscript> | <MNoscript> | | <object> | <motion.object> | <MObject> | | <ol> | <motion.ol> | <MOl> | | <optgroup> | <motion.optgroup> | <MOptgroup> | | <option> | <motion.option> | <MOption> | | <output> | <motion.output> | <MOutput> | | <p> | <motion.p> | <MP> | | <param> | <motion.param> | <MParam> | | <picture> | <motion.picture> | <MPicture> | | <pre> | <motion.pre> | <MPre> | | <progress> | <motion.progress> | <MProgress> | | <q> | <motion.q> | <MQ> | | <rp> | <motion.rp> | <MRp> | | <rt> | <motion.rt> | <MRt> | | <ruby> | <motion.ruby> | <MRuby> | | <s> | <motion.s> | <MS> | | <samp> | <motion.samp> | <MSamp> | | <script> | <motion.script> | <MScript> | | <section> | <motion.section> | <MSection> | | <select> | <motion.select> | <MSelect> | | <small> | <motion.small> | <MSmall> | | <source> | <motion.source> | <MSource> | | <span> | <motion.span> | <MSpan> | | <strong> | <motion.strong> | <MStrong> | | <style> | <motion.style> | <MStyle> | | <sub> | <motion.sub> | <MSub> | | <summary> | <motion.summary> | <MSummary> | | <sup> | <motion.sup> | <MSup> | | <table> | <motion.table> | <MTable> | | <tbody> | <motion.tbody> | <MTbody> | | <td> | <motion.td> | <MTd> | | <textarea> | <motion.textarea> | <MTextarea> | | <tfoot> | <motion.tfoot> | <MTfoot> | | <th> | <motion.th> | <MTh> | | <thead> | <motion.thead> | <MThead> | | <time> | <motion.time> | <MTime> | | <title> | <motion.title> | <MTitle> | | <tr> | <motion.tr> | <MTr> | | <track> | <motion.track> | <MTrack> | | <u> | <motion.u | <MU> | | <ul> | <motion.ul | <MUl> | | <var> | <motion.var | <MVar> | | <video> | <motion.video | <MVideo> | | <wbr> | <motion.wbr | <MWbr> | | <webview> | <motion.webview | <MWebview> |

Why Use This Package?

When using Framer Motion directly in Next.js, you often need to convert server components to client components with "use client", which can limit the benefits of SSR. This package provides ready-to-use animated components that work seamlessly with Next.js server components, allowing you to leverage the power of SSR and dynamic animations together.