react

[ASAP] Rapid Route-Finding for Bifurcating Organic Reactions

Journal of the American Chemical Society
DOI: 10.1021/jacs.9b13449




react

[ASAP] Amine-Reactive Activated Esters of <italic toggle="yes">meso</italic>-CarboxyBODIPY: Fluorogenic Assays and Labeling of Amines, Amino Acids, and Proteins

Journal of the American Chemical Society
DOI: 10.1021/jacs.9b13982




react

Maillard reaction in foods: mitigation strategies and positive properties / Salvatore Parisi, Sara M. Ameem, Shana Montalto and Anna Santangelo

Online Resource




react

Palladium supported on triazolyl-functionalized hypercrosslinked polymers as a recyclable catalyst for Suzuki–Miyaura coupling reactions

RSC Adv., 2020, 10,17123-17128
DOI: 10.1039/D0RA01190H, Paper
Open Access
Cijie Liu, Lijuan Zheng, Dexuan Xiang, Shasha Liu, Wei Xu, Qionglin Luo, You Shu, Yuejun Ouyang, Hongwei Lin
A novel hypercrosslinked polymer-palladium catalyst was prepared via external cross-linking reactions and applied in Suzuki–Miyaura reactions as a recyclable catalyst, resulting in TON numbers up to 1.66 × 104 and yields reaching 99%.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Hydroxyethyl sulfone based reactive coalescing agents for low-VOC waterborne coatings

RSC Adv., 2020, 10,17171-17179
DOI: 10.1039/D0RA00753F, Paper
Open Access
Jagjit Kaur, Ranganathan Krishnan, Balamurugan Ramalingam, Satyasankar Jana
Hydroxyethyl sulfone based compounds were revealed to exhibit characteristics of reactive coalescing agents towards application in environmentally-benign water borne coatings.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Simple organocatalyst component system for asymmetric hetero Diels–Alder reaction of isatins with enones

RSC Adv., 2020, 10,17486-17491
DOI: 10.1039/D0RA03006F, Paper
Open Access
Perumalsamy Parasuraman, Zubeda Begum, Madhu Chennapuram, Chigusa Seki, Yuko Okuyama, Eunsang Kwon, Koji Uwai, Michio Tokiwa, Suguru Tokiwa, Mitsuhiro Takeshita, Hiroto Nakano
A simple two catalysts component system of β-amino alcohols (catalyst) and amino acids (co-catalyst) works as an efficient organocatalysts in hetero Diels–Alder reaction of isatins with enones to afford chiral spirooxindole-tetrahydropyranones.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Alkaline water-splitting reactions over Pd/Co-MOF-derived carbon obtained via microwave-assisted synthesis

RSC Adv., 2020, 10,17359-17368
DOI: 10.1039/D0RA02307H, Paper
Open Access
  This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.
Adewale K. Ipadeola, Kenneth I. Ozoemena
Palladium nanoparticles supported on MOF-derived carbon serve as an efficient bifunctional electrocatalyst for alkaline water-splitting reactions.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Borohydride catalyzed redistribution reaction of hydrosilane and chlorosilane: a potential system for facile preparation of hydrochlorosilanes

RSC Adv., 2020, 10,17404-17407
DOI: 10.1039/D0RA03536J, Paper
Open Access
Yi Chen, Liqing Ai, Yongming Li, Caihong Xu
A borohydride catalyzed Si–H/Si–Cl redistribution system was established to prepare hydrochlorosilanes facilely and efficiently.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Position-locking of volatile reaction products by atmosphere and capping layers slows down photodecomposition of methylammonium lead triiodide perovskite

RSC Adv., 2020, 10,17534-17542
DOI: 10.1039/D0RA03572F, Paper
Open Access
  This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.
Fengshuo Zu, Thorsten Schultz, Christian M. Wolff, Dongguen Shin, Lennart Frohloff, Dieter Neher, Patrick Amsalem, Norbert Koch
Gas pressure and capping layers under ultrahigh vacuum prevent methylammonium lead triiodide photo-degradation due to efficient back-reaction of volatile compounds.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Computational study on the polymerization reaction of D-aminopeptidase for the synthesis of D-peptides

RSC Adv., 2020, 10,17582-17592
DOI: 10.1039/D0RA01138J, Paper
Open Access
  This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.
Joan Gimenez-Dejoz, Kousuke Tsuchiya, Ayaka Tateishi, Yoko Motoda, Takanori Kigawa, Yasuhisa Asano, Keiji Numata
We studied the molecular mechanism of D-aminopeptidase for the synthesis of polypeptides incorporating D-amino acids.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Dependence on co-adsorbed water in the reforming reaction of ethanol on a Rh(111) surface

RSC Adv., 2020, 10,17787-17794
DOI: 10.1039/D0RA02015J, Paper
Open Access
Yu-Yao Hsia, Po-Cheng Chien, Lu-Hsin Lee, Yu-Ling Lai, Li-Chung Yu, Yao-Jane Hsu, Jeng-Han Wang, Meng-Fan Luo
Adsorbed ethanol molecules penetrated readily through pre-adsorbed water to react at the Rh surface; they decomposed at a promoted probability.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

How to test React components using Karma and webpack

I’m working on a project at Twitter that uses React and webpack. After a few conversations with @sokra last year, this is the setup I put in place for testing React components (authored using JSX and ES6) using Karma.

Dependencies

You’ll need to install various packages. It looks like a lot of dependencies, but all the non-Karma packages will be necessary for general module bundling during development.

Full set of required packages:

webpack entry file

If you use webpack-specific features in your modules (e.g., loaders, plugins) you will need to use webpack to build a test bundle. The fastest and simplest approach is to create a single, test-specific entry file.

Create a file named tests.bundle.js. Within this file, you create a webpack context to match all the files that conform to a naming pattern – in this case *.spec.js(x).

var context = require.context('.', true, /.+.spec.jsx?$/);
context.keys().forEach(context);
module.exports = context;

Next, you point Karma to this file.

Karma config

Karma is configured using a karma.conf.js file. The browsers, plugins, and frameworks are specified in the standard way.

Point Karma at the tests.bundle.js file, and run it through the relevant preprocessor plugins (see example below).

The karma-webpack plugin relies on 2 custom properties of the Karma config: webpack and webpackMiddleware. The value of the former must be a webpack config object.

module.exports = function (config) {
  config.set({
    browsers: [ 'Chrome' ],
    // karma only needs to know about the test bundle
    files: [
      'tests.bundle.js'
    ],
    frameworks: [ 'chai', 'mocha' ],
    plugins: [
      'karma-chrome-launcher',
      'karma-chai',
      'karma-mocha',
      'karma-sourcemap-loader',
      'karma-webpack',
    ],
    // run the bundle through the webpack and sourcemap plugins
    preprocessors: {
      'tests.bundle.js': [ 'webpack', 'sourcemap' ]
    },
    reporters: [ 'dots' ],
    singleRun: true,
    // webpack config object
    webpack: {
      devtool: 'inline-source-map',
      module: {
        loaders: [
          {
            exclude: /node_modules/,
            loader: 'babel-loader,
            test: /.jsx?$/
          }
        ],
      }
    },
    webpackMiddleware: {
      noInfo: true,
    }
  });
};

Rather than duplicating your webpack config, you can require it in the Karma config file and override the devtool value to get sourcemaps working.

var webpackConfig = require('./webpack.config');
webpackConfig.devtool = 'inline-source-map';

module.exports = function (config) {
  config.set({
    ...
    webpack: webpackConfig
  });
};

That’s all you need to do to configure Karma to use webpack to load your JSX, ES6 React components.




react

Making SVG icon libraries for React apps

Using SVG is currently the best way to create icon libraries for apps. Icons built with SVG are scalable and adjustable, but also discrete, which allows them to be incrementally loaded and updated. In contrast, icons built as fonts cannot be incrementally loaded or updated. This alone makes SVG icons the better choice for high-performance apps that rely on code-splitting and incremental deploys.

This post describes how to make a package of React components from a library of SVG icons. Although I’m focusing on React, making any other type of package is also possible. At Twitter I used the approach described here to publish the company’s SVG icon library in several different formats: optimized SVGs, plain JavaScript modules, React DOM components, and React Native components.

Using the icons

The end result is a JavaScript package that can be installed and used like any other JavaScript package.

yarnpkg add @acme/react-icons

Each icon is available as an individually exported React component.

import IconCamera from '@acme/react-icons/camera';

This allows your module bundler to package only the icons that are needed, and icons can be efficiently split across chunks when using code-splitting. This is a significant advantage over icon libraries that require fonts and bundle all icons into a single component.

// entire icon library is bundled with your app
import Icon from '@acme/react-icons';
const IconCamera = <Icon name='camera' />;

Each icon is straightforward to customize (e.g., color and dimensions) on a per-use basis.

import IconCamera from '@twitter/react-icons/camera';
const Icon = (
  <IconCamera
    style={{ color: 'white', height: '2em' }}
  />
);

Although the icons render to SVG, this is an implementation detail that isn’t exposed to users of the components.

Creating components

Each React component renders an inline SVG, using path and dimensions data extracted from the SVG source files. A helper function called createIconComponent means that only a few lines of boilerplate are needed to create a component from SVG data.

import createIconComponent from './utils/createIconComponent';
import React from 'react';
const IconCamera = createIconComponent({
  content: <g><path d='...'></g>,
  height: 24,
  width: 24
});
IconCamera.displayName = 'IconCamera';
export default IconCamera;

This is an example of what the createIconComponent function looks like when building components for a web app like Twitter Lite, which is built with React Native for Web.

// createIconComponent.js
import { createElement, StyleSheet } from 'react-native-web';
import React from 'react';

const createIconComponent = ({ content, height, width }) =>
  (initialProps) => {
    const props = {
      ...initialProps,
      style: StyleSheet.compose(styles.root, initialProps.style),
      viewBox: `0 0 ${width} ${height}`
    };

    return createElement('svg', props, content);
  };

const styles = StyleSheet.create({
  root: {
    display: 'inline-block',
    fill: 'currentcolor',
    height: '1.25em',
    maxWidth: '100%',
    position: 'relative',
    userSelect: 'none',
    textAlignVertical: 'text-bottom'
  }
});

Setting the fill style to currentcolor allows you to control the color of the SVG using the color style property instead.

All that’s left is to use scripts to process the SVGs and generate each React component.

Creating icon packages

A complete example of one way to do this can be found in the icon-builder-example repository on GitHub.

The project structure of the example tool looks like this.

.
├── README.md
├── package.json
├── scripts/
    ├── build.js
    ├── createReactPackage.js
    └── svgOptimize.js
└── src/
    ├── alerts.svg
    ├── camera.svg
    ├── circle.svg
    └── ...

The build script uses SVGO to optimize the SVGs, extract SVG path data, and extract metadata. The example packager for React then uses templates to create a package.json and the React icon components shown earlier.

import createIconComponent from './utils/createIconComponent';
import React from 'react';
const ${componentName} = createIconComponent({
  height: ${height},
  width: ${width},
  content: <g>${paths}</g>
});
${componentName}.displayName = '${componentName}';
export default ${componentName};

Additional packagers can be included to build other package types from the same SVG source. When the underlying icon library changes, it only takes a couple of commands to rebuild hundreds of icons and publish new versions of each package.




react

Photo-reduction enables catalyst regeneration in Fenton reaction on an Fe2O3-decorated TiO2 nanotube-based photocatalyst

Dalton Trans., 2020, Advance Article
DOI: 10.1039/D0DT00670J, Paper
Quanming Peng, Guiming Peng, Liangpeng Wu, Yaqian Chen, Bin Han, Qiucheng Su, Shijun Liu, Xinjun Li
Active Fe2+ sites of TNT(Pd)/Fe2O3 with a unique electronic structure for the Fenton reaction can be self-generated.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

1,2-Insertion Reactions of Alkynes into Ge–C Bonds of Arylbromogermylene

Dalton Trans., 2020, Accepted Manuscript
DOI: 10.1039/D0DT01223H, Paper
Tomohiro Sugahara, Arturo Espinosa Ferao, Alicia Rey, Jing-Dong Guo, Shin Aoyama, Kazunobu Igawa, Katsuhiko Tomooka, Takahiro Sasamori, Daisuke Hashizume, Shigeru Nagase, Norihiro Tokitoh
1,2-insertion reactions of alkynes into the Ge–C bonds in dibromodigermenes afford stable crystalline bromovinylgermylenes. In contrast to previously reported Lewis-base-supported vinylgermylenes, the bromovinylgermylene obtained from reaction of the bromogermylene with...
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Synthesis and reactivity of cyclobutadiene nickel bromide

Dalton Trans., 2020, Advance Article
DOI: 10.1039/D0DT01510E, Paper
Nikita V. Shvydkiy, Egor A. Dlin, Klimentiy V. Ivanov, Anastasiya G. Buyanovskaya, Yulia V. Nelyubina, Dmitry S. Perekalin
The reaction of NiBr2 with 3-hexyne provides new access to various cyclobutadiene nickel complexes.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Selenotungstates incorporating organophosphonate ligands and metal ions: synthesis, characterization, magnetism and catalytic efficiency in Knoevenagel condensation reaction

Dalton Trans., 2020, Accepted Manuscript
DOI: 10.1039/D0DT00444H, Paper
Jingyang Niu, Hui Kong, Peipei He, Zongfei Yang, Qiaofei Xu, Jiawei Wang, Ran Ban, Pengtao Ma, Jingping Wang
Three sandwich-type TM-containing (TM = transition metal) organophosphonate-based polyoxotungstate clusters, [TM(H2O)4(SeW6O21)2{Co(OOCCH2NCH2PO3)2}3]12– (TM = Co, Ni), have been successfully synthesized, which is the first reported TMs-containing organophosphonate-based selenotungstates. They were structurally...
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Reactive metallocene cations as sensitive indicators of gas-phase oxygen and water

Dalton Trans., 2020, Advance Article
DOI: 10.1039/D0DT00798F, Paper
Anuj Joshi, Sofia Donnecke, Ori Granot, Dongju Shin, Scott Collins, Irina Paci, J. Scott McIndoe
Gas-phase oxidation of air-sensitive organometallic compounds does not proceed to a significant extent in mass spectrometric analysis unless a vacant coordination site is generated, making nitrogen generators a suitable source of desolvation gas.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry





react

Simulations unveil Grignard reactions' complex mechanism

Detailed models highlight a key role for solvents




react

Culture Biosciences raises $15 million for bioreactor service




react

Microreactor enables rapid testing of green solvents

Strategy reduces volumes and times needed to evaluate CO<sub>2</sub>-switchable systems




react

New mapping method reveals reactions galore

System combines compounds in unfamiliar ways




react

Nudging reaction in reverse repurposes polyurethane foam

New polymer processing method offers a path to recycle a huge class of consumer goods




react

Removal of organic micropollutants in anaerobic membrane bioreactors in wastewater treatment: critical review

Environ. Sci.: Water Res. Technol., 2020, 6,1230-1243
DOI: 10.1039/C9EW01058K, Critical Review
Michael Lim, Dominique Patureau, Marc Heran, Geoffroy Lesage, Jeonghwan Kim
The anaerobic membrane bioreactor (AnMBR) is a promising technology for achieving an energy-saving or even energy-positive wastewater treatment process as it produces high effluent quality and renewable energy in the form of methane.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Influence of activated carbon on performance and microbial communities in the treatment of solvent pollutant mixtures in a continuous stirred tank reactor

Environ. Sci.: Water Res. Technol., 2020, 6,1445-1455
DOI: 10.1039/D0EW00096E, Paper
Pablo Ferrero, Marta Izquierdo, Francisco Javier Álvarez-Hornos, Josep Manuel Penya-Roja, Vicente Martínez-Soria
Granular activated carbon addition could promote specific microorganisms which favour the anaerobic removal of non-readily biodegradable solvent compounds through their influence on the degradation (methanogenesis) of intermediates.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Insight into ferrihydrite effects on methanogenesis in UASB reactors treating high sulfate wastewater: reactor performance and microbial community

Environ. Sci.: Water Res. Technol., 2020, Advance Article
DOI: 10.1039/D0EW00154F, Paper
Zhen Jin, Zhiqiang Zhao, Yaobin Zhang
Ferrihydrite supplemented to establish DIET between iron-reducing bacteria and methanogens with Fe oxides in anaerobic digestion.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

[ASAP] Hydrothermal Liquefaction of Polycarbonate (PC) Plastics in Sub-/Supercritical Water and Reaction Pathway Exploration

ACS Sustainable Chemistry & Engineering
DOI: 10.1021/acssuschemeng.0c00700




react

[ASAP] Design and Synthesis of Highly Performing Bifunctional Ni-NiO-MoNi Hybrid Catalysts for Enhanced Urea Oxidation and Hydrogen Evolution Reactions

ACS Sustainable Chemistry & Engineering
DOI: 10.1021/acssuschemeng.0c01637




react

[ASAP] Boosted Reactivity of Low-Cost Solar Cells over a CuO/Co<sub>3</sub>O<sub>4</sub> Interfacial Structure Integrated with Graphene Oxide

ACS Sustainable Chemistry & Engineering
DOI: 10.1021/acssuschemeng.0c00282




react

[ASAP] Two-Dimensional Metal Hexahydroxybenzene Frameworks as Promising Electrocatalysts for an Oxygen Reduction Reaction

ACS Sustainable Chemistry & Engineering
DOI: 10.1021/acssuschemeng.0c01908




react

Producing biomolecular materials using fermenters, bioreactors, and biomolecular synthesizers / William L. Hochfeld

Hochfeld, William L




react

Bioreactors in stem cell biology : methods and protocols / edited by Kursad Turksen




react

Computational fluid dynamics (CFD) and reaction modelling study of bio-oil catalytic hydrodeoxygenation in microreactors

React. Chem. Eng., 2020, Advance Article
DOI: 10.1039/D0RE00102C, Paper
Sanaa Hafeez, Elsa Aristodemou, George Manos, S. M. Al-Salem, Achilleas Constantinou
A computational fluid dynamics (CFD) model was derived and validated in order to investigate the hydrodeoxygenation reaction of 4-propylguaiacol, which is a lignin-derived compound present in bio-oil.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Beyond electrolysis: old challenges and new concepts of electricity-driven chemical reactors

React. Chem. Eng., 2020, Advance Article
DOI: 10.1039/D0RE00116C, Perspective
Open Access
  This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.
Andrzej I. Stankiewicz, Hakan Nigar
With renewable electricity becoming the most widely available, versatile energy form on Earth, the electricity-driven chemical reactors will play crucial role in the transition to green, environmentally-neutral manufacturing of fuels and chemicals.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Elementary reaction pathway study and a deduced macrokinetic model for the unified understanding of Ni-catalyzed steam methane reforming

React. Chem. Eng., 2020, 5,873-885
DOI: 10.1039/C9RE00460B, Paper
Changming Ke, Zijing Lin
DFT based microkinetics and macrokinetics that give quantitative explanations of the Ni-catalyzed steam methane reforming reactions.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Ultrafast synthesis of 2-(benzhydrylthio)benzo[d]oxazole, an antimalarial drug, via an unstable lithium thiolate intermediate in a capillary microreactor

React. Chem. Eng., 2020, 5,849-852
DOI: 10.1039/D0RE00038H, Communication
Bandaru T. Ramanjaneyulu, Shinde Vidyacharan, Gwang-Noh Ahn, Dong-Pyo Kim
We present an ultrafast approach for the synthesis of 2-(benzhydrylthio)benzo[d]oxazole, an antimalarial drug, in 75% yield from benzo[d]oxazole-2-thiol and benzhydryl bromide via an unstable lithium thiolate intermediate in the presence of n-BuLi.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

New insights into catalysis for Heck reactions with fine supported Pd particles

React. Chem. Eng., 2020, 5,921-934
DOI: 10.1039/C9RE00480G, Paper
Lin Huang, Zhan Wang, Jozel Tan
The catalytic activity over supported Pd particles is dependent on the concentration of soluble active Pd species. The correlation that the smaller the size of supported Pd particles, the higher the catalytic activity is confirmed.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Automated generation of photochemical reaction data by transient flow experiments coupled with online HPLC analysis

React. Chem. Eng., 2020, 5,912-920
DOI: 10.1039/D0RE00066C, Paper
Christian P. Haas, Simon Biesenroth, Stephan Buckenmaier, Tom van de Goor, Ulrich Tallarek
Competing homo- and crossdimerization reactions between coumarin and 1-methyl-2-quinolinone are investigated by transient continuous-flow experiments combined with online HPLC, enabling the generation and acquisition of large reaction data sets.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Synthesis of 3-trifluoromethylated 1,3-butadienes via a Pd(0)-catalyzed fluorinated Heck reaction

React. Chem. Eng., 2020, 5,961-966
DOI: 10.1039/D0RE00093K, Paper
Yang Li, Meng Hao, Ming Xia, Ning Sun, Cai-Lin Zhang, Wen-Qing Zhu
1,3-Butadienes play a key role in modern synthetic chemistry and biochemistry because they are well-known precursors for the synthesis of retinoids.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Multitask prediction of site selectivity in aromatic C–H functionalization reactions

React. Chem. Eng., 2020, 5,896-902
DOI: 10.1039/D0RE00071J, Paper
Open Access
Thomas J. Struble, Connor W. Coley, Klavs F. Jensen
Aromatic C–H functionalization reactions are an important part of the synthetic chemistry toolbox.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Optimization of the direct synthesis of dimethyl ether from CO2 rich synthesis gas: closing the loop between experimental investigations and model-based reactor design

React. Chem. Eng., 2020, 5,949-960
DOI: 10.1039/D0RE00041H, Paper
Open Access
Nirvana Delgado Otalvaro, Markus Kaiser, Karla Herrera Delgado, Stefan Wild, Jörg Sauer, Hannsjörg Freund
Kinetic modeling, model-based optimization and experimental validation for the direct DME synthesis.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Sustainable chemo-enzymatic preparation of enantiopure (R)-β-hydroxy-1,2,3-triazoles via lactic acid bacteria-mediated bioreduction of aromatic ketones and a heterogeneous “click” cycloaddition reaction in deep eutectic solvents

React. Chem. Eng., 2020, 5,859-864
DOI: 10.1039/D0RE00067A, Communication
Paola Vitale, Francesco Lavolpe, Francesca Valerio, Mariaelena Di Biase, Filippo Maria Perna, Eugenia Messina, Gennaro Agrimi, Isabella Pisano, Vito Capriati
A chemo-enzymatic strategy for the preparation of enantiopure (R)-β-hydroxy-1,2,3-triazoles using a lactic acid bacterium as a whole-cell biocatalyst and a heterogeneous “click” cycloaddition reaction in deep eutectic solvents is disclosed.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Outstanding Reviewers for Reaction Chemistry & Engineering in 2019

React. Chem. Eng., 2020, 5,813-813
DOI: 10.1039/D0RE90016H, Editorial

We would like to take this opportunity to highlight the Outstanding Reviewers for Reaction Chemistry & Engineering in 2019, as selected by the editorial team for their significant contribution to the journal.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

An automated flow chemistry platform to decouple mixing and reaction times

React. Chem. Eng., 2020, Advance Article
DOI: 10.1039/D0RE00129E, Communication
Robert W. Epps, Amanda A. Volk, Kameel Abdel-Latif, Milad Abolhasani
We present a flow chemistry platform that decouples precursor mixing rates from reaction time using solely off-the-shelf components. We then utilize this platform towards material-efficient studies of mass transfer-controlled synthesis of inorganic perovskite quantum dots.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Continuous liquid-phase synthesis of nickel phosphide nanoparticles in a helically coiled tube reactor

React. Chem. Eng., 2020, Accepted Manuscript
DOI: 10.1039/D0RE00010H, Paper
Huidong Zheng, Donglin Li, Jingjing Chen, Jie Liu, Zuoyi Yan, S. Ted Oyama
The continuous liquid phase synthesis of nickel phosphide (Ni2P) nanoparticles was studied in a helically coiled tube (HCT) reactor both in single-phase and two-phases slug flow. The reactants were nickel...
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Ergosterol peroxide from Pleurotus ferulae inhibits gastrointestinal tumor cell growth through induction of apoptosis via reactive oxygen species and endoplasmic reticulum stress

Food Funct., 2020, Advance Article
DOI: 10.1039/C9FO02454A, Paper
Yi Yang, Xiaoyu Luo, Mayila Yasheng, Jun Zhao, Jinyu Li, Jinyao Li
Ergosterol peroxide was purified from Pleurotus ferulae by silica gel chromatography, Sephadex LH-20 chromatography and recrystallization and named as PFEP, which was identified by ESI-MS and NMR.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Correction: Efficacy of proprietary Lactobacillus casei for anti-tuberculosis associated gastrointestinal adverse reactions in adult patients: a randomized, open-label, dose–response trial

Food Funct., 2020, 11,3751-3751
DOI: 10.1039/D0FO90017F, Correction
Open Access
  This article is licensed under a Creative Commons Attribution 3.0 Unported Licence.
Song Lin, Shanliang Zhao, Jiahong Liu, Jianwen Zhang, Chao Zhang, Haibo Hao, Yuxia Sun, Jing Cai, Yang Yang, Yan Ma, Yuanyuan Li, Jinyu Wang, Aiguo Ma
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Enzyme reaction-guided identification of active components from the flowers of Sophora japonica var. violacea

Food Funct., 2020, Advance Article
DOI: 10.1039/D0FO00625D, Paper
Yunci Zhang, Dongyu Gu, Shuai He, Jing Meng, Jifeng Wang, Yunxiao Wang, Yi Wang, Jing Tian, Yi Yang
The flower of S. japonica is a favorite food and used as traditional medicine.
To cite this article before page numbers are assigned, use the DOI form of citation above.
The content of this RSS Feed (c) The Royal Society of Chemistry




react

Sugar matters: sugar moieties as reactivity-tuning factors in quercetin O-glycosides

Food Funct., 2020, Accepted Manuscript
DOI: 10.1039/D0FO00319K, Paper
Cezara Zagrean-Tuza, Augustin C Moţ, Tomasz Chmiel, Attila Bende, Ioan Turcu
Quercetin, one of the most abundant flavonoids in plant-based foods, commonly occurs in nature in various glycosylated forms. There is still a less explored aspect regarding the cause of its...
The content of this RSS Feed (c) The Royal Society of Chemistry