### Installing Framework7 via NPM Source: https://github.com/sksar/framework7-docs/blob/main/docs/docs/installation.html This command installs the Framework7 library using npm, the Node.js package manager. It's the recommended method for manual installation, fetching the latest stable version from the npm registry. ```Shell $ npm install framework7 ``` -------------------------------- ### Installing a Framework7 Plugin (JavaScript) Source: https://github.com/sksar/framework7-docs/blob/main/docs/docs/plugins-api.html This code demonstrates how to install a Framework7 plugin using the `.use()` method. It's crucial to install the plugin on the `Framework7` class before any instance of `Framework7` is initialized to ensure the plugin's functionality is available from the start. ```JavaScript Framework7.use(myPlugin); ``` -------------------------------- ### Installing Framework7 Project Dependencies (Bash) Source: https://github.com/sksar/framework7-docs/blob/main/docs/svelte/kitchen-sink.html This command installs all required Node.js dependencies for the Framework7 project, as specified in the package.json file. It must be executed within the root directory of the downloaded Framework7 repository. ```bash npm install ``` -------------------------------- ### Launching Framework7 Svelte Kitchen Sink (Bash) Source: https://github.com/sksar/framework7-docs/blob/main/docs/svelte/kitchen-sink.html This command starts the Framework7 Svelte Kitchen Sink application. It executes the 'svelte' script defined in the project's package.json, typically launching a development server. ```bash npm run svelte ``` -------------------------------- ### Installing Framework7 CLI Globally Source: https://github.com/sksar/framework7-docs/blob/main/docs/cli/installation.html This command installs the Framework7 CLI globally, allowing you to create and manage Framework7 projects from your command line. `sudo` privileges might be necessary for successful installation. ```Shell npm install -g framework7-cli ``` -------------------------------- ### Installing Framework7-React Plugin via NPM (Shell) Source: https://github.com/sksar/framework7-docs/blob/main/docs/react/installation.html This command installs the Framework7-React plugin, a crucial dependency for integrating Framework7 with React applications. It uses npm, the Node.js package manager, to fetch and install the package from the npm registry. ```shell npm install framework7-react ``` -------------------------------- ### Installing Gulp Globally (Bash) Source: https://github.com/sksar/framework7-docs/blob/main/docs/svelte/kitchen-sink.html This command installs Gulp globally on your system using npm, which is a prerequisite for building and running Framework7 projects. It ensures Gulp's command-line interface is available system-wide. ```bash npm install --global gulp ``` -------------------------------- ### Installing Project Dependencies (Shell) Source: https://github.com/sksar/framework7-docs/blob/main/docs/vue/kitchen-sink.html Installs all required project dependencies listed in the 'package.json' file for the Framework7 repository. This command should be executed in the root directory of the downloaded repository. ```Shell npm install ``` -------------------------------- ### Integrating Framework7 Store with Main App Component - Vue.js Source: https://github.com/sksar/framework7-docs/blob/main/docs/vue/store.html This example demonstrates how to integrate the created Framework7 store into the main application component. It shows passing the `store` instance as a prop to the `` component in the template and importing/returning the store in the ` ``` -------------------------------- ### Installing Node.js Dependencies for Framework7 Kitchen Sink Source: https://github.com/sksar/framework7-docs/blob/main/docs/docs/kitchen-sink.html This command installs all required Node.js dependencies for the Framework7 project. It must be executed in the root directory of the downloaded Framework7 repository after Node.js is installed, ensuring all necessary packages are available for development. ```Shell $ npm install ``` -------------------------------- ### Installing Project Dependencies via npm (Shell) Source: https://github.com/sksar/framework7-docs/blob/main/docs/react/kitchen-sink.html This command installs all the required project dependencies listed in the 'package.json' file within the Framework7 repository. It must be executed from the root directory of the downloaded repository. ```Shell npm install ``` -------------------------------- ### Basic HTML Structure for Framework7 Picker Examples Source: https://github.com/sksar/framework7-docs/blob/main/docs/docs/picker.html This HTML template provides the foundational markup for integrating Framework7 Picker components. It includes a page structure with a navbar, content block, and list items containing input fields configured as `readonly` to be associated with Picker instances, demonstrating setups for single and multi-value pickers. ```HTML